Skip to content

Hardware api 2

Hardware api 2 #54

# 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 }}