Skip to content

Advancing 0.18.0-rc0 release to status: shipyard #991

Advancing 0.18.0-rc0 release to status: shipyard

Advancing 0.18.0-rc0 release to status: shipyard #991

Workflow file for this run

---
name: Testing
permissions:
actions: write
contents: read
on:
pull_request:
jobs:
skip-check:
name: Run tests except on release
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@f75f66ce1886f00957d99748a42c724f4330bdcf
with:
paths_ignore: '["releases/**"]'
command:
name: Command
needs: skip-check
if: ${{ needs.skip-check.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
command: ['do-release', 'release']
steps:
- name: Check out the repository
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
with:
fetch-depth: 0
- name: Test the `make ${{ matrix.command }}` command
env:
# Needed for testing as we're running validations which hit the GH API rate limit
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: make test-${{ matrix.command }}
entire-release:
name: Entire release process
needs: skip-check
if: ${{ needs.skip-check.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: ['100.0.0-m0', '100.0.0-rc0']
steps:
- name: Check out the repository
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
with:
fetch-depth: 0
# Needed to properly build multi-arch Shipyard images when branching out
- name: Set up QEMU (to support building on non-native architectures)
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3
- name: Set up buildx
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb
- name: Test the entire release
env:
# Needed for testing as we're running validations which hit the GH API rate limit
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: make test-entire-release VERSION="${{ matrix.version }}"