chore: reorganize KIND test environments and cleanup obsolete scripts #15
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Owned by Alpha Team. | ||
| # Author: ludamad | ||
| # Purpose: Test the network every commit that affects bootstrap's or ci3 code. | ||
| name: Release Canary | ||
| on: | ||
| push: | ||
| branches: | ||
| - next | ||
| paths: | ||
| # Match any file named bootstrap.sh | ||
| - '**/bootstrap.sh' | ||
| # Anything in ci3 folder | ||
| - 'ci3/**' | ||
| concurrency: | ||
| group: ci3-release-canary | ||
| cancel-in-progress: true | ||
| jobs: | ||
| release-test: | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 540 | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | ||
| - name: Run | ||
| env: | ||
| AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
| AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
| GITHUB_TOKEN: ${{ secrets.AZTEC_BOT_GITHUB_TOKEN }} | ||
| BUILD_INSTANCE_SSH_KEY: ${{ secrets.BUILD_INSTANCE_SSH_KEY }} | ||
| GCP_SA_KEY: ${{ secrets.GCP_SA_KEY }} | ||
| GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }} | ||
| RUN_ID: ${{ github.run_id }} | ||
| run: | | ||
| ./.github/ci3.sh release-pr | ||
| jobs: | ||
| deploy-and-test: | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 540 | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | ||