seL4/.github/workflows/compilation-checks.yml
Gerwin Klein ab30e1cad6 github: bump action deps to node16 actions
GitHub has deprecated the old node12-based actions.

Signed-off-by: Gerwin Klein <gerwin.klein@proofcraft.systems>
2022-11-21 15:59:06 +11:00

33 lines
736 B
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:
jobs:
standalone_kernel:
name: kernel
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
arch: [ARM, ARM_HYP, AARCH64, RISCV64, X64]
compiler: [gcc, llvm]
exclude:
# llvm RISCV64 compilation is not currently supported
- arch: RISCV64
compiler: llvm
steps:
- uses: actions/checkout@v3
- uses: seL4/ci-actions/standalone-kernel@master
with:
ARCH: ${{ matrix.arch }}
COMPILER: ${{ matrix.compiler }}