-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub action for sel4test simulation
This repo is part of sel4test-manifest, so changes here should run sel4test. Signed-off-by: Gerwin Klein <[email protected]>
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright 2021, Proofcraft Pty Ltd | ||
# | ||
# SPDX-License-Identifier: BSD-2-Clause | ||
|
||
# sel4test simulation runs | ||
# | ||
# See sel4test-sim/builds.yml in the repo seL4/ci-actions for configs. | ||
|
||
name: seL4Test | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
|
||
jobs: | ||
simulation: | ||
name: Simulation | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
march: [armv6a, armv7a, armv8a, nehalem, rv32imac, rv64imac] | ||
compiler: [gcc, clang] | ||
exclude: | ||
- march: rv32imac | ||
compiler: clang | ||
- march: rv64imac | ||
compiler: clang | ||
steps: | ||
- uses: seL4/ci-actions/sel4test-sim@master | ||
with: | ||
march: ${{ matrix.march }} | ||
compiler: ${{ matrix.compiler }} |