-
Notifications
You must be signed in to change notification settings - Fork 30
160 lines (151 loc) · 4.49 KB
/
sel4bench.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# Copyright 2021, Proofcraft Pty Ltd
#
# SPDX-License-Identifier: BSD-2-Clause
# Deploy default.xml to sel4bench-manifest after successful runs.
name: seL4Bench
on:
push:
branches: [master]
paths-ignore:
- '**.md'
# allow manual trigger
workflow_dispatch:
# allow explict 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: sel4bench-manifest
manifest: master.xml
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@v3
with:
name: images-${{ matrix.march }}
path: '*-images.tar.gz'
hw-run:
name: HW Run
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
# do not run concurrently with other workflows, but do run concurrently in the build matrix
concurrency: sel4bench-hw-${{ strategy.job-index }}
steps:
- name: Get machine queue
uses: actions/checkout@v3
with:
repository: seL4/machine_queue
path: machine_queue
token: ${{ secrets.PRIV_REPO_TOKEN }}
- name: Get march
id: plat
uses: seL4/ci-actions/march-of-platform@master
with:
platform: ${{ matrix.platform }}
- name: Download image
uses: actions/download-artifact@v3
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@v3
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'
deploy:
name: Deploy
if: ${{ github.repository_owner == 'seL4' }}
runs-on: ubuntu-latest
needs: [code, hw-run]
steps:
- name: Deploy manifest
id: deploy
uses: seL4/ci-actions/manifest-deploy@master
with:
xml: ${{ needs.code.outputs.xml }}
manifest_repo: sel4bench-manifest
env:
GH_SSH: ${{ secrets.CI_SSH }}
- name: Check out website repo
uses: actions/checkout@v3
with:
repository: seL4/website
token: ${{ secrets.PRIV_REPO_TOKEN }}
- name: Get results for web deployment (sabre)
uses: actions/download-artifact@v3
with:
name: sel4bench-results-sabre
- name: Get results for web deployment (haswell)
uses: actions/download-artifact@v3
with:
name: sel4bench-results-pc99-haswell3
- name: Get results for web deployment (skylake)
uses: actions/download-artifact@v3
with:
name: sel4bench-results-pc99-skylake
- name: Get results for web deployment (tx1)
uses: actions/download-artifact@v3
with:
name: sel4bench-results-tx1
- name: Get results for web deployment (hifive)
uses: actions/download-artifact@v3
with:
name: sel4bench-results-hifive
- name: Generate web page
uses: seL4/ci-actions/sel4bench-web@master
with:
manifest_sha: ${{ steps.deploy.outputs.manifest_sha }}
- name: Deploy web page
run: |
mv home.pml content/About/Performance/
git config user.name "seL4 CI"
git config user.email "[email protected]"
git add content/About/Performance/home.pml
git commit -s -m "CI: update performance results"
git push origin master