Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: seL4/util_libs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7c2f74ac8a6976280b222a0fbd2258471ce0de7c
Choose a base ref
..
head repository: seL4/util_libs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5bbb8d1588438bcfc061a66eed0ca207a27f5d58
Choose a head ref
Showing with 14 additions and 3 deletions.
  1. +6 −2 .github/workflows/sel4test-hw.yml
  2. +8 −1 .github/workflows/sel4test-sim.yml
8 changes: 6 additions & 2 deletions .github/workflows/sel4test-hw.yml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
#
# See sel4test-hw/builds.yml in the repo seL4/ci-actions for configs.

name: seL4Test HW
name: seL4Test-HW

on:
# needs PR target for secrets access; guard by requiring label
@@ -17,6 +17,11 @@ on:
permissions:
contents: read

# Cancel older runs to reduce the load, especially on the machine queue.
concurrency:
group: ${{ github.workflow }}-pr-${{ github.event.number }}
cancel-in-progress: true

jobs:
hw-build:
name: HW Build
@@ -80,7 +85,6 @@ jobs:
with:
repository: seL4/machine_queue
path: machine_queue
token: ${{ secrets.PRIV_REPO_TOKEN }}
- name: Download image
uses: actions/download-artifact@v4
with:
9 changes: 8 additions & 1 deletion .github/workflows/sel4test-sim.yml
Original file line number Diff line number Diff line change
@@ -6,13 +6,20 @@
#
# See sel4test-sim/builds.yml in the repo seL4/ci-actions for configs.

name: seL4Test Sim
name: seL4Test-Sim

on:
push:
branches: [master]
pull_request:

# Cancel older runs to reduce the load. The workflow also runs on pushes to
# the master brnach, but skipping or cancellation will not happen there
# practically due to the unique run ID.
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:
simulation:
name: Simulation