github: factor out common workflows
The new reusable workflow feature of GitHub allows us to avoid repeating the workflow definitions and collect them in the ci-actions repo instead. Signed-off-by: Gerwin Klein <gerwin.klein@proofcraft.systems>
This commit is contained in:
parent
7f91e0c5f6
commit
bbb2b6b6b7
5 changed files with 23 additions and 276 deletions
26
.github/workflows/pr.yml
vendored
26
.github/workflows/pr.yml
vendored
|
|
@ -9,29 +9,9 @@ name: PR
|
|||
on: [pull_request]
|
||||
|
||||
jobs:
|
||||
gitlint:
|
||||
name: Gitlint
|
||||
runs-on: ubuntu-latest
|
||||
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
|
||||
|
||||
style:
|
||||
name: Style
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: seL4/ci-actions/style@master
|
||||
pr-checks:
|
||||
name: Checks
|
||||
uses: seL4/ci-actions/.github/workflows/pr.yml@master
|
||||
|
||||
preprocess:
|
||||
name: Preprocess
|
||||
|
|
|
|||
14
.github/workflows/push.yml
vendored
14
.github/workflows/push.yml
vendored
|
|
@ -12,14 +12,6 @@ on:
|
|||
pull_request:
|
||||
|
||||
jobs:
|
||||
check:
|
||||
name: License Check
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: seL4/ci-actions/license-check@master
|
||||
|
||||
links:
|
||||
name: Links
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: seL4/ci-actions/link-check@master
|
||||
checks:
|
||||
name: Checks
|
||||
uses: seL4/ci-actions/.github/workflows/push.yml@master
|
||||
|
|
|
|||
120
.github/workflows/sel4bench-pr.yml
vendored
120
.github/workflows/sel4bench-pr.yml
vendored
|
|
@ -1,120 +0,0 @@
|
|||
# Copyright 2022, Proofcraft Pty Ltd
|
||||
#
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
# Build and run sel4bench on pull requests, on label request
|
||||
|
||||
name: seL4Bench-HW
|
||||
|
||||
on:
|
||||
pull_request_target:
|
||||
types: [opened, reopened, synchronize, labeled]
|
||||
|
||||
# downgrade permissions to read-only as you would have in a standard PR action
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
# To reduce the load (especiually on the machine queue) we cancel any older runs
|
||||
# of this workflow for the current PR. Such runs exist, if there were new pushes
|
||||
# to the PR's branch without waiting for the workflow to finish. As a side
|
||||
# effect, pushing new commits now becomes a convenient way to cancel all the
|
||||
# older runs, e.g. if they are stuck and would only be stopped by the timeout
|
||||
# eventually.
|
||||
# Note that we could do the concurrency handling at a finer level, and only wrap
|
||||
# the actual run on the hardware. But there seems not much gain in letting the
|
||||
# older builds run, as these are usually obsolete with new pushes also.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-pr-${{ github.event.number }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
code:
|
||||
name: Freeze Code
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.event_name == 'pull_request_target' &&
|
||||
github.event.action != 'labeled' &&
|
||||
contains(github.event.pull_request.labels.*.name, 'hw-bench') ||
|
||||
github.event_name == 'pull_request_target' &&
|
||||
github.event.action == 'labeled' &&
|
||||
github.event.label.name == 'hw-bench' }}
|
||||
outputs:
|
||||
xml: ${{ steps.repo.outputs.xml }}
|
||||
steps:
|
||||
- id: repo
|
||||
uses: seL4/ci-actions/repo-checkout@master
|
||||
with:
|
||||
manifest_repo: sel4bench-manifest
|
||||
manifest: master.xml
|
||||
sha: ${{ github.event.pull_request.head.sha }}
|
||||
|
||||
build:
|
||||
name: Build
|
||||
needs: code
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
march: [armv7a, armv8a, nehalem, rv64imac]
|
||||
steps:
|
||||
- name: Build
|
||||
uses: seL4/ci-actions/sel4bench@master
|
||||
with:
|
||||
xml: ${{ needs.code.outputs.xml }}
|
||||
march: ${{ matrix.march }}
|
||||
- name: Upload images
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: images-${{ matrix.march }}
|
||||
path: '*-images.tar.gz'
|
||||
|
||||
hw-run:
|
||||
name: HW Benchmark
|
||||
if: ${{ github.repository_owner == 'seL4' }}
|
||||
runs-on: ubuntu-latest
|
||||
needs: [build]
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
platform:
|
||||
- sabre
|
||||
- imx8mm_evk
|
||||
- odroid_c2
|
||||
- odroid_xu4
|
||||
- am335x_boneblack
|
||||
- tx1
|
||||
- tx2
|
||||
- hifive
|
||||
include:
|
||||
- platform: pc99
|
||||
req: skylake
|
||||
- platform: pc99
|
||||
req: haswell3
|
||||
steps:
|
||||
- name: Get machine queue
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: seL4/machine_queue
|
||||
path: machine_queue
|
||||
- name: Get march
|
||||
id: plat
|
||||
uses: seL4/ci-actions/march-of-platform@master
|
||||
with:
|
||||
platform: ${{ matrix.platform }}
|
||||
- name: Download image
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: images-${{ steps.plat.outputs.march }}
|
||||
- name: Run
|
||||
uses: seL4/ci-actions/sel4bench-hw@master
|
||||
with:
|
||||
platform: ${{ matrix.platform }}
|
||||
req: ${{ matrix.req }}
|
||||
index: $${{ strategy.job-index }}
|
||||
env:
|
||||
HW_SSH: ${{ secrets.HW_SSH }}
|
||||
- name: Upload results
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
# funky expression below is to work around lack of ternary operator
|
||||
name: sel4bench-results-${{ matrix.platform }}${{ matrix.req != '' && format('-{0}', matrix.req) || '' }}
|
||||
path: '*.json'
|
||||
115
.github/workflows/sel4test-hw.yml
vendored
115
.github/workflows/sel4test-hw.yml
vendored
|
|
@ -1,113 +1,26 @@
|
|||
# Copyright 2021, Proofcraft Pty Ltd
|
||||
# Copyright 2024, Proofcraft Pty Ltd
|
||||
#
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
# sel4test hardware builds and runs
|
||||
# hardware builds and runs
|
||||
#
|
||||
# See sel4test-hw/builds.yml in the repo seL4/ci-actions for configs.
|
||||
# See sel4test-hw/builds.yml and sel4bench-hw/builds.yml in the repo
|
||||
# seL4/ci-actions for configs.
|
||||
|
||||
name: seL4Test-HW
|
||||
name: HW
|
||||
|
||||
on:
|
||||
# needs PR target for secrets access; guard by requiring label
|
||||
pull_request_target:
|
||||
types: [opened, reopened, synchronize, labeled]
|
||||
|
||||
# downgrade permissions to read-only as you would have in a standard PR action
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
# To reduce the load (especiually on the machine queue) we cancel any older runs
|
||||
# of this workflow for the current PR. Such runs exist, if there were new pushes
|
||||
# to the PR's branch without waiting for the workflow to finish. As a side
|
||||
# effect, pushing new commits now becomes a convenient way to cancel all the
|
||||
# older runs, e.g. if they are stuck and would only be stopped by the timeout
|
||||
# eventually.
|
||||
# Note that we could do the concurrency handling at a finer level, and only wrap
|
||||
# the actual run on the hardware. But there seems not much gain in letting the
|
||||
# older builds run, as these are usually obsolete with new pushes also.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-pr-${{ github.event.number }}
|
||||
cancel-in-progress: true
|
||||
types: [synchronize, labeled]
|
||||
|
||||
jobs:
|
||||
hw-build:
|
||||
name: HW Build
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.event_name == 'push' ||
|
||||
github.event_name == 'pull_request_target' &&
|
||||
github.event.action != 'labeled' &&
|
||||
(contains(github.event.pull_request.labels.*.name, 'hw-build') ||
|
||||
contains(github.event.pull_request.labels.*.name, 'hw-test')) ||
|
||||
github.event_name == 'pull_request_target' &&
|
||||
github.event.action == 'labeled' &&
|
||||
(github.event.label.name == 'hw-build' ||
|
||||
github.event.label.name == 'hw-test') }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
# There is no "rv32imac" hardware yet.
|
||||
march: [armv7a, armv8a, nehalem, rv64imac]
|
||||
compiler: [gcc, clang]
|
||||
steps:
|
||||
- name: Build
|
||||
uses: seL4/ci-actions/sel4test-hw@master
|
||||
with:
|
||||
march: ${{ matrix.march }}
|
||||
compiler: ${{ matrix.compiler }}
|
||||
sha: ${{ github.event.pull_request.head.sha }}
|
||||
- name: Upload images
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: images-${{ matrix.march }}-${{ matrix.compiler }}
|
||||
path: '*-images.tar.gz'
|
||||
- name: Upload kernel.elf files
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: kernel.elf-${{ matrix.march }}-${{ matrix.compiler }}
|
||||
path: '*-kernel.elf'
|
||||
sel4test:
|
||||
name: seL4Test
|
||||
uses: seL4/ci-actions/.github/workflows/sel4test-hw.yml@master
|
||||
secrets: inherit
|
||||
|
||||
the_matrix:
|
||||
name: Matrix
|
||||
needs: hw-build
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
matrix: ${{ steps.matrix.outputs.matrix }}
|
||||
steps:
|
||||
- id: matrix
|
||||
uses: seL4/ci-actions/sel4test-hw-matrix@master
|
||||
|
||||
hw-run:
|
||||
name: HW Run
|
||||
runs-on: ubuntu-latest
|
||||
needs: the_matrix
|
||||
if: ${{ github.repository_owner == 'seL4' &&
|
||||
(github.event_name == 'push' ||
|
||||
github.event_name == 'pull_request_target' &&
|
||||
github.event.action != 'labeled' &&
|
||||
contains(github.event.pull_request.labels.*.name, 'hw-test') ||
|
||||
github.event_name == 'pull_request_target' &&
|
||||
github.event.action == 'labeled' &&
|
||||
github.event.label.name == 'hw-test') }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix: ${{ fromJson(needs.the_matrix.outputs.matrix) }}
|
||||
steps:
|
||||
- name: Get machine queue
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: seL4/machine_queue
|
||||
path: machine_queue
|
||||
- name: Download image
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: images-${{ matrix.march }}-${{ matrix.compiler }}
|
||||
- name: Run
|
||||
uses: seL4/ci-actions/sel4test-hw-run@master
|
||||
with:
|
||||
platform: ${{ matrix.platform }}
|
||||
compiler: ${{ matrix.compiler }}
|
||||
mode: ${{ matrix.mode }}
|
||||
index: $${{ strategy.job-index }}
|
||||
env:
|
||||
HW_SSH: ${{ secrets.HW_SSH }}
|
||||
sel4bench:
|
||||
name: seL4Bench
|
||||
uses: seL4/ci-actions/.github/workflows/sel4bench-hw.yml@master
|
||||
secrets: inherit
|
||||
|
|
|
|||
24
.github/workflows/sel4test-sim.yml
vendored
24
.github/workflows/sel4test-sim.yml
vendored
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
# See sel4test-sim/builds.yml in the repo seL4/ci-actions for configs.
|
||||
|
||||
name: seL4Test-Sim
|
||||
name: seL4Test
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
|
@ -15,25 +15,7 @@ on:
|
|||
- 'LICENSES/**'
|
||||
- '*.md'
|
||||
|
||||
# To reduce the load we cancel any older runs of this workflow for the current
|
||||
# PR. Such runs exist, if there were new pushes to the PR's branch without
|
||||
# waiting for the workflow to finish. As a side effect, pushing new commits now
|
||||
# becomes a convenient way to cancel all the older runs, e.g. if they are stuck
|
||||
# and would only be stopped by the timeout eventually.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-pr-${{ github.event.number }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
sim:
|
||||
name: Simulation
|
||||
runs-on: ubuntu-latest
|
||||
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 }}
|
||||
name: Sim
|
||||
uses: seL4/ci-actions/.github/workflows/sel4test-sim.yml@master
|
||||
|
|
|
|||
Loading…
Reference in a new issue