forked from mit-pdos/xv6-public
-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (33 loc) · 938 Bytes
/
Copy pathfull-verification.yml
File metadata and controls
39 lines (33 loc) · 938 Bytes
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
name: Full verification
on:
workflow_dispatch:
release:
types: [published]
permissions:
contents: read
jobs:
counter-matrix:
name: Counter mode ${{ matrix.mode }} on ${{ matrix.cpus }} CPU(s)
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
mode: [0, 1, 2]
cpus: [1, 4]
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install xv6 toolchain and QEMU
run: |
sudo apt-get update
sudo apt-get install --yes --no-install-recommends \
build-essential gcc-multilib make perl python3 qemu-system-x86
- name: Run cumulative Lab 1-4 smoke tests
run: >-
python3 scripts/qemu_smoke.py
--cpus ${{ matrix.cpus }}
--extra-cflags=-DSYSCALL_COUNT_MODE=${{ matrix.mode }}
--timeout 600