-
Notifications
You must be signed in to change notification settings - Fork 20
88 lines (68 loc) · 2.23 KB
/
amd64-linux-clear-stack.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
name: amd64-linux-main
on:
workflow_dispatch:
push:
branches:
- feature/clear-stack
pull_request:
jobs:
compile-clear-stack:
runs-on: [self-hosted, linux, X64, amd64-main]
strategy:
matrix:
stack_zeroization:
- loop
- loopSCT
- unrolled
stack_zeroization_size:
- u8
- u16
- u32
- u64
- u128
- u256
steps:
- name: checkout
uses: actions/checkout@v3
- name: compile
run: JASMIN=$(which_jasminc) make -j$JOBS -C src/ CI=1 JFLAGS="-stack-zeroization ${{ matrix.stack_zeroization }} -stack-zeroization-size ${{ matrix.stack_zeroization_size }}" default
- name: print logs
run: JASMIN=$(which_jasminc) make -C src/ CI=1 reporter
- name: return error if there are any errors
run: make -C src/ CI=1 err
- name: libjade-logs-src-clear-stack-loop.tar.gz - contains non-empty logs and errors
if: always()
uses: actions/upload-artifact@v3
with:
name: libjade-logs-src-clear-stack-loop.tar.gz
path: src/libjade-logs-src.tar.gz
test-clear-stack:
runs-on: [self-hosted, linux, X64, amd64-main]
strategy:
matrix:
stack_zeroization:
- loop
- loopSCT
- unrolled
stack_zeroization_size:
- u8
- u16
- u32
- u64
- u128
- u256
steps:
- name: checkout
uses: actions/checkout@v3
- name: compile and run
run: JASMIN=$(which_jasminc) make -j$JOBS -C test/ CI=1 JFLAGS="-stack-zeroization ${{ matrix.stack_zeroization }} -stack-zeroization-size ${{ matrix.stack_zeroization_size }}" EXCLUDE=crypto_sign/falcon/falcon512/amd64/avx2/ default
- name: print logs
run: JASMIN=$(which_jasminc) make -C test/ CI=1 reporter
- name: return error if there are any errors
run: make -C test/ CI=1 err
- name: libjade-logs-test-clear-stack-loop.tar.gz - contains non-empty logs and errors
if: always()
uses: actions/upload-artifact@v3
with:
name: libjade-logs-test-clear-stack-loop.tar.gz
path: test/libjade-logs-test.tar.gz