mirror of https://github.com/seL4/seL4_libs.git
github: use central CI workflows
Use GitHub workflow_call feature to reduce workflow duplication. Signed-off-by: Gerwin Klein <gerwin.klein@proofcraft.systems>
This commit is contained in:
parent
06527c27c7
commit
c45e3d0f33
|
@ -0,0 +1,26 @@
|
||||||
|
# Copyright 2024, Proofcraft Pty Ltd
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: BSD-2-Clause
|
||||||
|
|
||||||
|
# sel4test and sel4bench hardware builds and runs
|
||||||
|
#
|
||||||
|
# See sel4test-hw/builds.yml and sel4bench-hw/builds.yml in the repo
|
||||||
|
# seL4/ci-actions for configs.
|
||||||
|
|
||||||
|
name: HW
|
||||||
|
|
||||||
|
on:
|
||||||
|
# needs PR target for secrets access; guard by requiring label
|
||||||
|
pull_request_target:
|
||||||
|
types: [synchronize, labeled]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
sel4test:
|
||||||
|
name: seL4Test
|
||||||
|
uses: seL4/ci-actions/.github/workflows/sel4test-hw.yml@master
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
|
sel4bench:
|
||||||
|
name: seL4Bench
|
||||||
|
uses: seL4/ci-actions/.github/workflows/sel4bench-hw.yml@master
|
||||||
|
secrets: inherit
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright 2020, Data61, CSIRO (ABN 41 687 119 230)
|
# Copyright 2025, Proofcraft Pty Ltd
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: BSD-2-Clause
|
# SPDX-License-Identifier: BSD-2-Clause
|
||||||
|
|
||||||
|
@ -6,23 +6,9 @@
|
||||||
|
|
||||||
name: PR
|
name: PR
|
||||||
|
|
||||||
on: [pull_request]
|
on: [pull_request, workflow_dispatch]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
gitlint:
|
pr-checks:
|
||||||
name: Gitlint
|
name: Checks
|
||||||
runs-on: ubuntu-latest
|
uses: seL4/ci-actions/.github/workflows/pr.yml@master
|
||||||
steps:
|
|
||||||
- uses: seL4/ci-actions/gitlint@master
|
|
||||||
|
|
||||||
whitespace:
|
|
||||||
name: 'Trailing Whitespace'
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: seL4/ci-actions/git-diff-check@master
|
|
||||||
|
|
||||||
shell:
|
|
||||||
name: 'Portable Shell'
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: seL4/ci-actions/bashisms@master
|
|
||||||
|
|
|
@ -10,26 +10,9 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
pull_request:
|
pull_request:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check:
|
checks:
|
||||||
name: License Check
|
name: Checks
|
||||||
runs-on: ubuntu-latest
|
uses: seL4/ci-actions/.github/workflows/push.yml@master
|
||||||
steps:
|
|
||||||
- uses: seL4/ci-actions/license-check@master
|
|
||||||
|
|
||||||
links:
|
|
||||||
name: Links
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: seL4/ci-actions/link-check@master
|
|
||||||
with:
|
|
||||||
exclude: js/node_modules
|
|
||||||
|
|
||||||
style:
|
|
||||||
name: Style
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: seL4/ci-actions/style@master
|
|
||||||
with:
|
|
||||||
diff_only: true
|
|
||||||
|
|
|
@ -9,28 +9,13 @@
|
||||||
name: seL4Test
|
name: seL4Test
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
|
||||||
branches: [master]
|
|
||||||
pull_request:
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- 'LICENSES/**'
|
||||||
# Cancel older runs of this workflow that are still not finished for the
|
- '*.md'
|
||||||
# current PR. This reduces the CI load. For deployment to the master branch,
|
workflow_dispatch:
|
||||||
# the workflow will run on each push, but no cancellation happens here.
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && format('pr-{0}', github.event.number) || format('run-{0}', github.run_id) }}
|
|
||||||
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
simulation:
|
sim:
|
||||||
name: Simulation
|
name: Sim
|
||||||
runs-on: ubuntu-latest
|
uses: seL4/ci-actions/.github/workflows/sel4test-sim.yml@master
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
march: [armv7a, armv8a, nehalem, rv32imac, rv64imac]
|
|
||||||
compiler: [gcc, clang]
|
|
||||||
steps:
|
|
||||||
- uses: seL4/ci-actions/sel4test-sim@master
|
|
||||||
with:
|
|
||||||
march: ${{ matrix.march }}
|
|
||||||
compiler: ${{ matrix.compiler }}
|
|
||||||
|
|
Loading…
Reference in New Issue