seL4/.github/workflows/compilation-checks.yml
Gerwin Klein 9d84967424 github: bump GH action versions
Node 20 is deprecated. Bump GitHub action dependencies to versions that
run on more recent node.

Signed-off-by: Gerwin Klein <gerwin.klein@proofcraft.systems>
2026-05-28 18:13:04 +10:00

38 lines
1.1 KiB
YAML

# Copyright 2020, Data61, CSIRO (ABN 41 687 119 230)
#
# SPDX-License-Identifier: BSD-2-Clause
# Compilation actions to run on pull requests
name: Compile
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
# To reduce the load we cancel any older runs of this workflow for the current
# PR. For deployment to the master branch, the workflow will run on each push,
# and the `run_id` parameter will prevent cancellation.
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && format('pr-{0}', github.event.number) || format('run-{0}', github.run_id) }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
standalone_kernel:
name: kernel
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# RISCV32 and IA32 are left out, as they have no verified config
arch: [ARM, ARM_HYP, AARCH64, RISCV64, X64]
compiler: [gcc, llvm]
steps:
- uses: actions/checkout@v6
- uses: seL4/ci-actions/standalone-kernel@master
with:
ARCH: ${{ matrix.arch }}
COMPILER: ${{ matrix.compiler }}