From d637b79a95e20cff36a4095b3c542518cd78b4a5 Mon Sep 17 00:00:00 2001 From: Frederic Barrat Date: Fri, 5 Nov 2021 18:26:18 +0100 Subject: CI: Small cleanup in the github actions workflow file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Strengthen the container security settings, since we don't seem to need more. The rest of the patch is cosmectic. Signed-off-by: Frederic Barrat Signed-off-by: Cédric Le Goater --- .github/workflows/docker-builds-checks.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to '.github') diff --git a/.github/workflows/docker-builds-checks.yml b/.github/workflows/docker-builds-checks.yml index c020154..bd97336 100644 --- a/.github/workflows/docker-builds-checks.yml +++ b/.github/workflows/docker-builds-checks.yml @@ -1,19 +1,26 @@ name: Docker builds and checks -on: [push] + +on: [ push ] jobs: check_build: + runs-on: ubuntu-latest strategy: + + fail-fast: false + matrix: os: [ ubuntu-18.04, ubuntu-20.04, ubuntu-rolling, centos7, centos8, fedora33, fedora34, fedora35, docs ] steps: - uses: actions/checkout@v2 + - name: Create Docker image run: | docker build --pull -t ${{ matrix.os }} -f opal-ci/Dockerfile-${{ matrix.os }} . - - name: build skiboot and run checks + + - name: Build skiboot and run checks run: | - docker run --security-opt seccomp=unconfined --volume `pwd`:/build --tmpfs /tmp/ --rm -t ${{ matrix.os }} bash -c "./opal-ci/build-${{ matrix.os }}.sh" + docker run --rm -t ${{ matrix.os }} bash -c "./opal-ci/build-${{ matrix.os }}.sh" -- cgit v1.1