-
Notifications
You must be signed in to change notification settings - Fork 5
35 lines (31 loc) · 915 Bytes
/
maketest.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
name: Run builds and tests
on:
push:
branches: [ '*' ]
pull_request:
branches: [ $default-branch ]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Install xcompiler
run: ./scripts/install-ci.sh
- name: Print xcompiler version
run: riscv64-linux-gnu-gcc --version
- name: Build qemu-image
run: make build-qemu-image
- name: Run virt dry-run tests
run: make out/test-output-virt.txt
- name: Run u64 dry-run tests
run: make out/test-output-u64.txt
- name: Run u32 dry-run tests
run: make out/test-output-u32.txt
- name: Run virt smoke tests
run: make out/smoke-test-output-virt.txt
- name: Run u64 smoke tests
run: make out/smoke-test-output-u64.txt
- name: Run u32 smoke tests
run: make out/smoke-test-output-u32.txt
- name: Make all binaries
run: make all