Skip to content

Commit

Permalink
tests.yml: add CI-force-arm label (#67760) (#67764)
Browse files Browse the repository at this point in the history
  • Loading branch information
fxcoudert authored Dec 26, 2020
1 parent 7701ebd commit 6aded4b
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ env:
HOMEBREW_GITHUB_ACTIONS: 1
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_CHANGE_ARCH_TO_ARM: 1
HOMEBREW_REQUIRE_BOTTLED_ARM: 1
jobs:
tap_syntax:
if: github.repository == 'Homebrew/homebrew-core'
runs-on: ubuntu-latest
outputs:
run-tests: ${{ steps.check-labels.outputs.result }}
skip-arm-tests: ${{ steps.check-arm-labels.outputs.result }}
env:
HOMEBREW_FORCE_HOMEBREW_ON_LINUX: 1
steps:
Expand Down Expand Up @@ -62,6 +62,24 @@ jobs:
}
console.log('CI-syntax-only label found. Skipping tests.')
- name: Check for CI-force-arm label
id: check-arm-labels
uses: actions/github-script@v3
if: github.event_name == 'pull_request'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const { data: { labels: labels } } = await github.pulls.get({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: context.issue.number
})
if (!labels.map(label => label.name).includes('CI-force-arm')) {
console.log('No CI-force-arm label found.')
return true
}
console.log('CI-force-arm label found.')
tests:
needs: tap_syntax
if: github.event_name == 'pull_request' && needs.tap_syntax.outputs.run-tests
Expand All @@ -78,6 +96,9 @@ jobs:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
HOMEBREW_GITHUB_API_TOKEN: ${{secrets.GITHUB_TOKEN}}
steps:
- name: Check whether ARM tests will be forced
if: needs.tap_syntax.outputs.skip-arm-tests
run: echo 'HOMEBREW_REQUIRE_BOTTLED_ARM=1' >> $GITHUB_ENV
- name: Force vendored Ruby on Catalina
if: matrix.version == '10.15'
run: echo 'HOMEBREW_FORCE_VENDOR_RUBY=1' >> $GITHUB_ENV
Expand Down

0 comments on commit 6aded4b

Please sign in to comment.