-
Notifications
You must be signed in to change notification settings - Fork 15
32 lines (28 loc) · 858 Bytes
/
userspace-test.yml
File metadata and controls
32 lines (28 loc) · 858 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
name: Linux user space CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install meson
run: |
sudo apt-get update
sudo apt-get install -y meson gcovr doxygen graphviz
- name: Meson setup
run: meson setup build -Db_coverage=true -Dslh_dsa_ascon_128s=enabled -Dslh_dsa_ascon_128f=enabled -Dsecure_execution=enabled
- name: Meson compile
run: meson compile -C build
- name: Meson test
run: meson test -C build
#- name: Generate test coverage report
# run: ninja coverage-html -C build
#- name: Archive code coverage results
# uses: actions/upload-artifact@v4
# with:
# name: code-coverage-report
# path: build/meson-logs/coveragereport