Skip to content

Commit

Permalink
Add GitHub action for sel4test simulation
Browse files Browse the repository at this point in the history
This repo is part of sel4test-manifest, so changes here should
run sel4test.

Signed-off-by: Gerwin Klein <[email protected]>
  • Loading branch information
lsf37 committed Jul 6, 2021
1 parent 53e5fba commit dde19b6
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/sel4test-sim.yml
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 }}

0 comments on commit dde19b6

Please sign in to comment.