Skip to content

wip: aarch64 port

wip: aarch64 port #65

# 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:
# 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@v4
- uses: seL4/ci-actions/standalone-kernel@master
with:
ARCH: ${{ matrix.arch }}
COMPILER: ${{ matrix.compiler }}