Skip to content

Bump actions/checkout from 4.2.0 to 4.2.1 #64

Bump actions/checkout from 4.2.0 to 4.2.1

Bump actions/checkout from 4.2.0 to 4.2.1 #64

Workflow file for this run

# 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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- 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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- 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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- 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