Compare commits

..

2 Commits

Author SHA1 Message Date
b5ded80d26
update drone
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2023-02-01 15:23:36 +01:00
ce8687c1a4
added ubuntu 22.04
All checks were successful
continuous-integration/drone/tag Build is passing
2023-02-01 14:26:38 +01:00
2 changed files with 12 additions and 5 deletions

View File

@ -24,17 +24,23 @@ local Pipeline(os, release) = {
auto_tag: false, auto_tag: false,
force_tag: true, force_tag: true,
daemon_off: false, daemon_off: false,
} },
} when: {
event: {
include: [
"tag",
"cron"
], ],
trigger: { },
event: ['tag'],
} }
}
]
}; };
[ [
Pipeline("debian", "bullseye"), Pipeline("debian", "bullseye"),
Pipeline("debian", "buster"), Pipeline("debian", "buster"),
Pipeline("ubuntu", "22.04"),
Pipeline("ubuntu", "20.04"), Pipeline("ubuntu", "20.04"),
Pipeline("ubuntu", "18.04"), Pipeline("ubuntu", "18.04"),
] ]

View File

@ -10,5 +10,6 @@ debian/ubuntu docker image with developer tools for .deb file building and packa
|--------|----------| |--------|----------|
| Debian | bullseye | | Debian | bullseye |
| Debian | buster | | Debian | buster |
| Ubuntu | 22.04 |
| Ubuntu | 20.04 | | Ubuntu | 20.04 |
| Ubuntu | 18.04 | | Ubuntu | 18.04 |