-
Notifications
You must be signed in to change notification settings - Fork 54
81 lines (74 loc) · 1.71 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Copyright 2021, Proofcraft Pty Ltd
#
# SPDX-License-Identifier: BSD-2-Clause
name: Test
on:
push:
branches:
- master
pull_request:
paths-ignore:
- 'docs/**'
- 'LICENSES/**'
- '.*'
# allow manual trigger
workflow_dispatch:
# allow explicit trigger from other repos when dependencies have changed
repository_dispatch:
types: [deps-update]
jobs:
code:
name: Freeze Code
runs-on: ubuntu-latest
outputs:
xml: ${{ steps.repo.outputs.xml }}
steps:
- id: repo
uses: seL4/ci-actions/repo-checkout@master
with:
manifest_repo: sel4-tutorials-manifest
manifest: master.xml
test:
name: Tutorial Solution
needs: code
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
app:
- capabilities
- libraries-1
- libraries-2
- libraries-3
- libraries-4
- hello-camkes-0
- hello-camkes-1
- hello-camkes-2
- hello-camkes-timer
- hello-world
- interrupts
- ipc
- mapping
- notifications
- untyped
- threads
- fault-handlers
- mcs
steps:
- uses: seL4/ci-actions/tutorials@master
with:
app: ${{ matrix.app }}
xml: ${{ needs.code.outputs.xml }}
deploy:
name: Deploy manifest
if: ${{ github.repository_owner == 'seL4' && github.event_name != 'pull_request' }}
runs-on: ubuntu-latest
needs: [test, code]
steps:
- name: Deploy
uses: seL4/ci-actions/manifest-deploy@master
with:
xml: ${{ needs.code.outputs.xml }}
manifest_repo: sel4-tutorials-manifest
env:
GH_SSH: ${{ secrets.CI_SSH }}