From b977392446da0c08755ff19935635e002efa3557 Mon Sep 17 00:00:00 2001 From: Emmanuel Engelhart Date: Thu, 9 Feb 2023 20:23:37 +0100 Subject: [PATCH] Remove CI container builds --- .github/workflows/ci.yml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5df2753..8d94ef3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,30 +5,7 @@ on: schedule: - cron: '0 1 * * *' -env: - DOCKER_VERSION: 32 - jobs: - Docker: - strategy: - fail-fast: false - matrix: - variant: [bionic, f35, focal, alpine] - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Build docker image - shell: bash - run: | - TAGNAME=${{matrix.variant}}-${DOCKER_VERSION} - if [ ! $(curl -sflL https://hub.docker.com/v2/repositories/kiwix/kiwix-build_ci/tags/${TAGNAME}) ] - then - echo "${{secrets.docker_password}}" | docker login -u "${{secrets.docker_username}}" --password-stdin - FULLTAGNAME=kiwix/kiwix-build_ci:${TAGNAME} - docker build -t ${FULLTAGNAME} - < ${GITHUB_WORKSPACE}/.github/ci_images/${{matrix.variant}}_builder.dockerfile - docker push ${FULLTAGNAME} - fi - Linux: strategy: fail-fast: false @@ -60,7 +37,6 @@ jobs: HOME: /home/runner SSH_KEY: /tmp/id_rsa runs-on: ubuntu-latest - needs: Docker container: image: "kiwix/kiwix-build_ci:${{matrix.image_variant}}-32" options: "--device /dev/fuse --privileged"