summaryrefslogtreecommitdiffstats
path: root/.github/workflows/updater.yml
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2021-10-15 12:22:17 -0400
committerGitHub <noreply@github.com>2021-10-15 12:22:17 -0400
commit0cb8ff16e430b7a6c476d131a48783612b5dd328 (patch)
tree4884bf2f77a3ccb1a08ee48feca644ce9414a28c /.github/workflows/updater.yml
parenta3643623bda776dd0123980eb214d3247975179f (diff)
Add Ubuntu 21.10 to CI. (#11585)
* Add Ubuntu 21.10 to CI. * Work around bugs in Docker. * Work around broken Ubuntu 21.10 Docker images.
Diffstat (limited to '.github/workflows/updater.yml')
-rw-r--r--.github/workflows/updater.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/updater.yml b/.github/workflows/updater.yml
index 187ba99f2b..c990799c00 100644
--- a/.github/workflows/updater.yml
+++ b/.github/workflows/updater.yml
@@ -37,6 +37,7 @@ jobs:
- 'ubuntu:18.04'
- 'ubuntu:20.04'
- 'ubuntu:21.04'
+ - 'ubuntu:21.10'
include:
- distro: 'alpine:3.14'
pre: 'apk add -U bash'
@@ -56,6 +57,8 @@ jobs:
pre: 'apt-get update'
- distro: 'ubuntu:21.04'
pre: 'apt-get update'
+ - distro: 'ubuntu:21.10'
+ pre: 'rm -f /etc/apt/apt.conf.d/docker* && apt-get update'
runs-on: ubuntu-latest
steps:
- name: Git clone repository
@@ -85,7 +88,7 @@ jobs:
run: |
echo $PRE > ./prep-cmd.sh
docker build . -f .github/dockerfiles/Dockerfile.build_test -t test --build-arg BASE=${{ matrix.distro }}
- docker run -e DO_NOT_TRACK=1 --network host -w /netdata test \
+ docker run --security-opt seccomp=unconfined -e DO_NOT_TRACK=1 --network host -w /netdata test \
/bin/sh -c '/netdata/packaging/installer/kickstart.sh --dont-wait \
&& /netdata/packaging/installer/netdata-updater.sh --not-running-from-cron --no-updater-self-update \
&& bash /netdata/.github/scripts/check-updater.sh'