From fbf734e98858e9a23f6eaa8e90f4db48e4a22c89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Mart=C3=ADnez=20Fay=C3=B3?= Date: Wed, 20 Dec 2023 22:53:07 -0300 Subject: [PATCH] Test actions fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Agustín Martínez Fayó --- .github/workflows/release_build.yaml | 212 +-------------------------- 1 file changed, 1 insertion(+), 211 deletions(-) diff --git a/.github/workflows/release_build.yaml b/.github/workflows/release_build.yaml index 633927cb79..0b0d6c0c92 100644 --- a/.github/workflows/release_build.yaml +++ b/.github/workflows/release_build.yaml @@ -226,180 +226,6 @@ jobs: outputs: test: ${{ steps.set-matrix.outputs.test }} - integration: - name: integration (linux) - runs-on: ubuntu-20.04 - needs: [cache-deps, images] - - permissions: - contents: read - - strategy: - fail-fast: false - matrix: - num_runners: [5] - runner_id: [1, 2, 3, 4, 5] - steps: - - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - with: - # The "upgrade" integration test needs the history to ensure - # that the version number in the source code has been bumped as - # expected. This action does not fetch tags unless we supply a - # fetch depth of zero. - fetch-depth: 0 - # Even though we've just checked out the code, checkout@v2 has a bug - # where it overwrites the local annotated tag, dropping the annotation. - # The "upgrade" integration test is designed to only consider annotated - # tags as version tags. We don't really want to soften this stance, so - # instead we'll re-fetch the tags. - # - # See https://github.com/actions/checkout/issues/290 - - name: Fix tag annotations - run: git fetch --tags --force - - name: Setup go - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 - with: - go-version: ${{ env.GO_VERSION }} - - name: Install regctl - uses: regclient/actions/regctl-installer@b6614f5f56245066b533343a85f4109bdc38c8cc # main - - name: Load cached deps - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 - with: - path: ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - - name: Load cached build tools - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 - with: - path: .build - key: ${{ runner.os }}-tools-${{ hashFiles('.go-version','Makefile') }} - - name: Download archived images - uses: actions/download-artifact@7a1cd3216ca9260cd8022db641d960b1db4d1be4 # v4.0.0 - with: - name: images - path: . - - name: Load archived images - run: | - tar xvf images.tar.gz - make load-images - - name: Run integration tests - env: - NUM_RUNNERS: ${{ matrix.num_runners }} - THIS_RUNNER: ${{ matrix.runner_id }} - TERM: dumb - # We don't need to specify CICD_TARGET_BRANCH since the upgrade - # integration test will detect the annotated tag for version checking. - # CICD_TARGET_BRANCH: - run: ./.github/workflows/scripts/split.sh | xargs ./test/integration/test.sh - - integration-k8s: - name: integration-k8s - runs-on: ubuntu-20.04 - needs: [cache-deps, images, build-matrix] - timeout-minutes: 45 - - permissions: - contents: read - - strategy: - fail-fast: false - matrix: - num_runners: [1] - runner_id: [1] - #Test elements should be added as [KubeCTLVersion, K8s-image, KindVersion] - test: ${{ fromJson(needs.build-matrix.outputs.test) }} - steps: - - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - with: - # The "upgrade" integration test needs the history to ensure - # that the version number in the source code has been bumped as - # expected. This action does not fetch tags unless we supply a - # fetch depth of zero. - fetch-depth: 0 - - name: Setup go - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 - with: - go-version: ${{ env.GO_VERSION }} - - name: Install regctl - uses: regclient/actions/regctl-installer@b6614f5f56245066b533343a85f4109bdc38c8cc # main - - name: Load cached deps - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 - with: - path: ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - - name: Load cached build tools - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 - with: - path: .build - key: ${{ runner.os }}-tools-${{ hashFiles('.go-version','Makefile') }} - - name: Download archived images - uses: actions/download-artifact@7a1cd3216ca9260cd8022db641d960b1db4d1be4 # v4.0.0 - with: - name: images - path: . - - name: Load archived images - run: | - tar xvf images.tar.gz - make load-images - - name: Run k8s integration - env: - NUM_RUNNERS: ${{ matrix.num_runners }} - THIS_RUNNER: ${{ matrix.runner_id }} - KUBECTLVERSION: ${{ matrix.test[0] }} - K8SIMAGE: ${{ matrix.test[1] }} - KINDVERSION: ${{ matrix.test[2] }} - TERM: dumb - CICD_TARGET_BRANCH: ${{ github.event.pull_request.base.ref }} - run: ./.github/workflows/scripts/split_k8s.sh | xargs ./test/integration/test-k8s.sh - - integration-windows: - name: integration (windows) - runs-on: windows-2022 - needs: images-windows - - permissions: - contents: read - - defaults: - run: - shell: msys2 {0} - steps: - - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - name: Setup go - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 - with: - go-version: ${{ env.GO_VERSION }} - - name: Load cached deps - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 - with: - path: ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - - name: Load cached build tools - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 - with: - path: .build - key: ${{ runner.os }}-tools-${{ hashFiles('.go-version','Makefile') }} - - name: Install msys2 - uses: msys2/setup-msys2@07aeda7763550b267746a772dcea5e5ac3340b36 # v2 - with: - msystem: MINGW64 - update: true - path-type: inherit - install: >- - git base-devel mingw-w64-x86_64-toolchain unzip - - name: Download archived images - uses: actions/download-artifact@7a1cd3216ca9260cd8022db641d960b1db4d1be4 # v4.0.0 - with: - name: images-windows - path: . - - name: Load archived images - run: docker load -i images-windows.tar.gz - - name: Run integration tests - # Run all tests for now - run: make integration-windows - cache-deps-windows: name: cache-deps (windows) runs-on: windows-2022 @@ -549,7 +375,7 @@ jobs: publish-artifacts: runs-on: ubuntu-20.04 - needs: [lint, unit-test, unit-test-race-detector, artifacts, integration, lint-windows, unit-test-windows, artifacts-windows, integration-windows] + needs: [lint, unit-test, unit-test-race-detector, artifacts, lint-windows, unit-test-windows, artifacts-windows] permissions: contents: write @@ -578,39 +404,3 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Create the release using the version number as the title run: gh release create "${GITHUB_REF#refs/tags/}" ./artifacts/*.zip ./artifacts/*.tar.gz ./artifacts/*.txt --title "${GITHUB_REF#refs/tags/}" - - publish-images: - runs-on: ubuntu-20.04 - needs: [lint, unit-test, unit-test-race-detector, artifacts, integration, lint-windows, unit-test-windows, artifacts-windows, integration-windows] - permissions: - contents: read - id-token: write - packages: write - - env: - COSIGN_EXPERIMENTAL: 1 - - steps: - - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - name: Install cosign - uses: sigstore/cosign-installer@9614fae9e5c5eddabb09f90a270fcb487c9f7149 # v3.3.0 - with: - cosign-release: v1.13.1 - - name: Install regctl - uses: regclient/actions/regctl-installer@b6614f5f56245066b533343a85f4109bdc38c8cc # main - - name: Download archived images - uses: actions/download-artifact@7a1cd3216ca9260cd8022db641d960b1db4d1be4 # v4.0.0 - with: - name: images - path: . - - name: Log in to GHCR - uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - name: Push images - run: | - tar xzvf images.tar.gz - ./.github/workflows/scripts/push-images.sh "${GITHUB_REF}"