From 1ebfc6d5e7adf1070196b8abe734fdc40a0383cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Tue, 15 Oct 2024 10:20:39 +0200 Subject: [PATCH] Remove 2.6 rebuild --- .github/workflows/rebuild-2-6.yaml | 83 ------------------------------ 1 file changed, 83 deletions(-) delete mode 100644 .github/workflows/rebuild-2-6.yaml diff --git a/.github/workflows/rebuild-2-6.yaml b/.github/workflows/rebuild-2-6.yaml deleted file mode 100644 index dd2eac015..000000000 --- a/.github/workflows/rebuild-2-6.yaml +++ /dev/null @@ -1,83 +0,0 @@ ---- -name: Rebuild - -on: - schedule: - - cron: '30 2 * * *' - -env: - PROJECT: demo - # Requires CI_GPG_PRIVATE_KEY and GOPASS_CI_GITHUB_TOKEN secrets. - OPENSHIFT_PROJECT: gs-gmf-demo - # The release branches - HELM_RELEASE_NAMES: prod-2-6 - -jobs: - config: - runs-on: ubuntu-22.04 - name: Config - timeout-minutes: 10 - - strategy: - fail-fast: false - matrix: - branch: - - prod-2-6 - - prod-2-6-simple - - steps: - - uses: actions/checkout@v4 - with: - ref: ${{ matrix.branch }} - - - uses: camptocamp/initialise-gopass-summon-action@v2 - with: - ci-gpg-private-key: ${{ secrets.CI_GPG_PRIVATE_KEY }} - github-gopass-ci-token: ${{ secrets.GOPASS_CI_GITHUB_TOKEN }} - patterns: docker - - - run: touch env.secrets - - run: sed -i '/^DOCKER_TAG=/d' env.project - - name: Build config - run: ./build --config - - - run: echo "${HOME}/.local/bin" >> ${GITHUB_PATH} - - run: python3 -m pip install --user --requirement=ci/requirements.txt - - - name: Publish - run: c2cciutils-publish --group=config --type=rebuild --branch=${{ matrix.branch }} - - run: ci/trigger --image=config --version=${{ matrix.branch }} - if: "!contains(matrix.branch, '-simple')" - - geoportal: - runs-on: ubuntu-22.04 - name: Geoportal - timeout-minutes: 10 - - strategy: - fail-fast: false - matrix: - branch: - - prod-2-6 - - steps: - - uses: actions/checkout@v4 - with: - ref: ${{ matrix.branch }} - - - run: touch env.secrets - - run: sed -i '/^DOCKER_TAG=/d' env.project - - name: Build geoportal - run: ./build --geoportal - - - uses: camptocamp/initialise-gopass-summon-action@v2 - with: - ci-gpg-private-key: ${{ secrets.CI_GPG_PRIVATE_KEY }} - github-gopass-ci-token: ${{ secrets.GOPASS_CI_GITHUB_TOKEN }} - patterns: docker - - - run: echo "${HOME}/.local/bin" >> ${GITHUB_PATH} - - run: python3 -m pip install --user --requirement=ci/requirements.txt -# - name: Publish -# run: c2cciutils-publish --group=geoportal --type=rebuild --branch=${{ matrix.branch }} -# - run: ci/trigger --image=geoportal --version=${{ matrix.branch }}