Switch to version 4 of GitHub artifact actions #96
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: Main | |
on: | |
push: | |
# Run the entire pipeline for 'main' even though the merge queue already runs checks | |
# for every change. This just offers an extra layer of testing and covers the case of | |
# random force pushes. | |
branches: ["main"] | |
pull_request: | |
types: ['opened', 'synchronize'] | |
branches: ["**"] | |
merge_group: | |
types: [checks_requested] | |
workflow_dispatch: | |
jobs: | |
build-win: | |
name: Windows | |
if: ${{ github.event_name != 'pull_request' }} | |
uses: ./.github/workflows/windows.yml | |
with: | |
unit-tests: true | |
secrets: inherit | |
build-mac: | |
name: Mac | |
if: ${{ github.event_name != 'pull_request' }} | |
uses: ./.github/workflows/mac.yml | |
with: | |
unit-tests: true | |
secrets: inherit | |
build-linux: | |
name: Linux | |
uses: ./.github/workflows/linux.yml | |
with: | |
unit-tests: true | |
wpt-layout: ${{ github.event_name == 'pull_request' && 'none' || 'all' }} | |
secrets: inherit | |
build-android: | |
name: Android | |
if: ${{ github.event_name != 'pull_request' }} | |
uses: ./.github/workflows/android.yml | |
with: | |
profile: "release" | |
secrets: inherit | |
build-result: | |
name: Result | |
runs-on: ubuntu-latest | |
if: always() | |
# needs all build to detect cancellation | |
needs: | |
- "build-win" | |
- "build-mac" | |
- "build-linux" | |
- "build-android" | |
steps: | |
- name: Mark the job as successful | |
if: ${{ !contains(needs.*.result, 'failure') && !contains(needs.*.result, 'cancelled') }} | |
run: exit 0 | |
- name: Mark the job as unsuccessful | |
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') | |
run: exit 1 |