Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/hw-tests.yml
Original file line number Diff line number Diff line change
@@ -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
24 changes: 5 additions & 19 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,14 @@
# Copyright 2020, Data61, CSIRO (ABN 41 687 119 230)
# Copyright 2025, Proofcraft Pty Ltd
#
# SPDX-License-Identifier: BSD-2-Clause

# Actions to run on pull requests

name: PR

on: [pull_request]
on: [pull_request, workflow_dispatch]

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
pr-checks:
name: Checks
uses: seL4/ci-actions/.github/workflows/pr.yml@master
25 changes: 4 additions & 21 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,9 @@ on:
branches:
- master
pull_request:
workflow_dispatch:

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
with:
exclude: js/node_modules

style:
name: Style
runs-on: ubuntu-latest
steps:
- uses: seL4/ci-actions/style@master
with:
diff_only: true
checks:
name: Checks
uses: seL4/ci-actions/.github/workflows/push.yml@master
21 changes: 21 additions & 0 deletions .github/workflows/sel4test-sim.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# 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:
pull_request:
paths-ignore:
- 'LICENSES/**'
- '*.md'
workflow_dispatch:

jobs:
sim:
name: Sim
uses: seL4/ci-actions/.github/workflows/sel4test-sim.yml@master