GitHub has deprecated the old node12-based actions. Signed-off-by: Gerwin Klein <gerwin.klein@proofcraft.systems>
33 lines
736 B
YAML
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 }}
|