mirror of
https://github.com/seL4/seL4.git
synced 2026-04-04 22:39:54 +00:00
This commit pulls out a separate workflow for sel4test (simulation + hardware runs) on pushes to master, and deploys a new default.xml to sel4test-manifest when the test is successful. Signed-off-by: Gerwin Klein <gerwin.klein@proofcraft.systems>
36 lines
762 B
YAML
36 lines
762 B
YAML
# 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 Sim
|
|
|
|
on:
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'manual/**'
|
|
- 'LICENSES/**'
|
|
- '*.md'
|
|
|
|
jobs:
|
|
sim:
|
|
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 }}
|