Compare commits

..

3 Commits

Author SHA1 Message Date
Christian Richter
b4a4f4fead fix netcat
Some checks reported errors
continuous-integration/drone/push Build was killed
continuous-integration/drone/pr Build was killed
Signed-off-by: Christian Richter <crichter@owncloud.com>
2024-04-16 16:18:06 +02:00
Christian Richter
fa565e4f2c reenable amd64
Some checks reported errors
continuous-integration/drone/pr Build was killed
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is failing
Signed-off-by: Christian Richter <crichter@owncloud.com>
2022-10-16 17:55:09 +02:00
Christian Richter
d0502ff5a6 disable amd64 builds
Some checks reported errors
continuous-integration/drone/pr Build was killed
continuous-integration/drone/push Build was killed
Signed-off-by: Christian Richter <crichter@owncloud.com>
2022-08-29 10:43:29 +02:00
2 changed files with 10 additions and 10 deletions

View File

@@ -1,24 +1,24 @@
def main(ctx): def main(ctx):
return [ return [
#stepPR("amd64", "motsognir"), stepPR("amd64", "motsognir"),
stepPR("arm64", "motsognir"), stepPR("arm64", "motsognir"),
#stepMergeMaster("amd64", "motsognir"), stepMergeMaster("amd64", "motsognir"),
stepMergeMaster("arm64", "motsognir"), stepMergeMaster("arm64", "motsognir"),
#stepBuildWeekly("amd64", "motsognir"), stepBuildWeekly("amd64", "motsognir"),
stepBuildWeekly("arm64", "motsognir"), stepBuildWeekly("arm64", "motsognir"),
#stepPR("amd64", "webtest"), stepPR("amd64", "webtest"),
stepPR("arm64", "webtest"), stepPR("arm64", "webtest"),
#stepMergeMaster("amd64", "webtest"), stepMergeMaster("amd64", "webtest"),
stepMergeMaster("arm64", "webtest"), stepMergeMaster("arm64", "webtest"),
#stepBuildWeekly("amd64", "webtest"), stepBuildWeekly("amd64", "webtest"),
stepBuildWeekly("arm64", "webtest"), stepBuildWeekly("arm64", "webtest"),
#stepPR("amd64", "unbound"), stepPR("amd64", "unbound"),
stepPR("arm64", "unbound"), stepPR("arm64", "unbound"),
#stepMergeMaster("amd64", "unbound"), stepMergeMaster("amd64", "unbound"),
stepMergeMaster("arm64", "unbound"), stepMergeMaster("arm64", "unbound"),
#stepBuildWeekly("amd64", "unbound"), stepBuildWeekly("amd64", "unbound"),
stepBuildWeekly("arm64", "unbound"), stepBuildWeekly("arm64", "unbound"),
notify(ctx), notify(ctx),

View File

@@ -2,7 +2,7 @@ FROM debian:latest
LABEL maintainer="dragonchaser <autobuilds@datenschmutz.space>" LABEL maintainer="dragonchaser <autobuilds@datenschmutz.space>"
EXPOSE 5335/udp EXPOSE 5335/udp
RUN apt-get update \ RUN apt-get update \
&& apt-get -y install unbound netcat && apt-get -y install unbound netcat-traditional
COPY unbound/config.conf /etc/unbound/unbound.conf.d/ COPY unbound/config.conf /etc/unbound/unbound.conf.d/
COPY unbound/entrypoint.sh / COPY unbound/entrypoint.sh /
ENTRYPOINT /entrypoint.sh ENTRYPOINT /entrypoint.sh