AArch64: mark isFpuEnable as DONT_TRANSLATE #802
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 }} |