Compare commits

..

No commits in common. "master" and "0.1.1" have entirely different histories.

3 changed files with 5 additions and 14 deletions

View File

@ -24,23 +24,17 @@ 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

@ -1,8 +1,6 @@
ARG BUILD_FROM ARG BUILD_FROM
FROM ${BUILD_FROM} FROM ${BUILD_FROM}
ENV DEBIAN_FRONTEND=noninteractive
RUN \ RUN \
apt-get update && \ apt-get update && \
apt-get install -y build-essential devscripts debhelper pkg-config apt-get install -y build-essential devscripts debhelper pkg-config

View File

@ -10,6 +10,5 @@ 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 |