forked from wolfSSL/wolfBoot
-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (46 loc) · 1.49 KB
/
test-renode-noasm.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
name: Renode Automated multi memory configurations
on:
push:
branches: [ 'master', 'main', 'release/**' ]
pull_request:
branches: [ '*' ]
jobs:
renode_automated_noasm:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Select config
run: |
cp config/examples/nrf52840.config .config && make include/target.h
##### NO_ASM tests
# ECC256 TEST
- name: Renode Tests ECC256
run: ./tools/renode/docker-test.sh "SIGN=ECC256 NO_ASM=1"
# ECC384 TEST
- name: Renode Tests ECC384
run: ./tools/renode/docker-test.sh "SIGN=ECC384 NO_ASM=1"
# ECC521 TEST
- name: Renode Tests ECC521
run: ./tools/renode/docker-test.sh "SIGN=ECC521 NO_ASM=1"
# ED25519 TEST
- name: Renode Tests ED25519
run: ./tools/renode/docker-test.sh "SIGN=ED25519 NO_ASM=1"
# ED448 TEST
- name: Renode Tests ED448
run: ./tools/renode/docker-test.sh "SIGN=ED448 NO_ASM=1"
# RSA2048 TEST
- name: Renode Tests RSA2048
run: ./tools/renode/docker-test.sh "SIGN=RSA2048 NO_ASM=1"
# RSA3072 TEST
- name: Renode Tests RSA3072
run: ./tools/renode/docker-test.sh "SIGN=RSA3072 NO_ASM=1"
# RSA4096 TEST
- name: Renode Tests RSA4096
run: ./tools/renode/docker-test.sh "SIGN=RSA4096 NO_ASM=1"
- name: Upload Output Dir
uses: actions/upload-artifact@v3
with:
name: Renode Test Results
path: test_results/