feat(actions): run build parallel on multiple runners and build arm natively #467
This file contains 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
name: Check for version and revision bumps in PR | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
check_changes_and_versions: | |
name: Check for changes and version bumps | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.MATRIX }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: '0' | |
- name: Verify changes and versions | |
run: | | |
GIT_DIFF_BASE='${{ github.event.pull_request.base.sha }}' | |
GIT_DIFF_HEAD='${{ github.event.pull_request.head.sha }}' | |
./scripts/ci_version_changed_check.sh "$GIT_DIFF_BASE" "$GIT_DIFF_HEAD" |