Bump actions/checkout from 4.2.1 to 4.2.2 #73
Workflow file for this run
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
# SPDX-FileCopyrightText: 2023-2024 Jochem Rutgers | |
# | |
# SPDX-License-Identifier: CC0-1.0 | |
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: read-all | |
jobs: | |
build-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: bootstrap | |
run: | | |
dist/ubuntu/bootstrap.sh | |
- name: build | |
run: dist/ubuntu/build.sh | |
build-macos: | |
runs-on: macos-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: bootstrap | |
run: | | |
dist/macos/bootstrap.sh | |
- name: build | |
run: dist/macos/build.sh | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: build | |
run: dist\win32\build.cmd | |
# Dummy job that depends on all other build-* jobs. | |
build-all-check: | |
needs: [build-ubuntu, build-macos, build-windows] | |
runs-on: ubuntu-latest | |
if: success() | |
outputs: | |
success: ${{ steps.setoutput.outputs.success }} | |
steps: | |
- id: setoutput | |
run: echo "success=true" >> $GITHUB_OUTPUT | |
# Dummy job to check if build-all-check was successful. | |
build-all: | |
needs: [build-ubuntu, build-macos, build-windows, build-all-check] | |
runs-on: ubuntu-latest | |
if: always() | |
steps: | |
- run: | | |
passed="${{ needs.build-all-check.outputs.success }}" | |
if [[ $passed == "true" ]]; then | |
echo "Build passed" | |
exit 0 | |
else | |
echo "Build failed" | |
exit 1 | |
fi |