forked from openwsn-berkeley/lakers
-
Notifications
You must be signed in to change notification settings - Fork 0
207 lines (199 loc) · 6.44 KB
/
build-and-test.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
name: Build and test
on:
push:
# branches: [main]
# tags: 'v*'
pull_request:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
# check-style:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout repo
# uses: actions/checkout@v3
# - name: Install Rust formatter
# run: rustup component add rustfmt
# - name: Check if code is well formatted
# run: cargo fmt --check
#
# unit-tests: # run before build because it is faster
# needs: check-style
# runs-on: ubuntu-latest
#
# strategy:
# fail-fast: false
# matrix:
# crypto_backend: [edhoc-crypto/hacspec, edhoc-crypto/psa, edhoc-crypto/rustcrypto]
# ead: [ead-none, ead-zeroconf]
#
# steps:
# - name: Checkout repo
# uses: actions/checkout@v3
#
# - name: Run unit tests # note that we only add `--package edhoc-hacspec` when testing the hacspec version of the lib
# run: RUST_BACKTRACE=1 cargo test -p edhoc-rs -p edhoc-crypto -p edhoc-consts -p edhoc-ead-zeroconf --no-default-features --features="${{ matrix.crypto_backend }}, ${{ matrix.ead }}" --no-fail-fast -- --test-threads 1
#
#
# build-edhoc-package:
# needs: unit-tests
# runs-on: ubuntu-latest
#
# strategy:
# fail-fast: false
# matrix:
# crypto_backend: [edhoc-crypto/hacspec, edhoc-crypto/psa, edhoc-crypto/psa-baremetal, edhoc-crypto/cryptocell310, edhoc-crypto/rustcrypto]
# ead: [ead-none, ead-zeroconf]
#
# steps:
# - name: Checkout repo
# uses: actions/checkout@v3
#
# - name: Install arm targets for Rust
# run: rustup target add thumbv7m-none-eabi && rustup target add thumbv7em-none-eabihf
# - name: Install arm gcc
# run: sudo apt-get -y update && sudo apt-get -y install gcc-arm-none-eabi
#
# - name: Build
# run: cargo build --package edhoc-rs --package edhoc-crypto --package edhoc-ead --no-default-features --features="${{ matrix.crypto_backend }}, ${{ matrix.ead }}" --release
generate-fstar:
# needs: unit-tests
runs-on: ubuntu-latest
# container: docker.io/geonnave/hax
steps:
- uses: actions/checkout@v4
- name: Generate fstar code using the main library and the hacspec crypto backend
run: |
docker run --rm -v ${{ github.workspace }}:/edhoc-rs docker.io/geonnave/hax bash -e -c "\
cd edhoc-rs
cargo-hax -C -p edhoc-rs -p edhoc-crypto --no-default-features --features='edhoc-crypto/hacspec, edhoc-ead/ead-none' --release ';' into -i '-c_wrapper::** -edhoc_rs::generate_connection_identifier_cbor -edhoc_rs::generate_connection_identifier' fstar\
"
zip -j -r edhoc-rs-fstar.zip $(find . -name *fst)
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: fstar-code
path: ./edhoc-rs-fstar.zip
#
#
# build-static-lib-and-headers:
# needs: unit-tests
# runs-on: ubuntu-latest
#
# strategy:
# fail-fast: false
# matrix:
# crypto_backend: [crypto-psa-baremetal, crypto-cryptocell310]
#
# steps:
# - name: Checkout repo
# uses: actions/checkout@v3
#
# - name: Install arm targets for Rust
# run: rustup target add thumbv7em-none-eabihf
# - name: Install arm gcc
# run: sudo apt-get -y update && sudo apt-get -y install gcc-arm-none-eabi
#
# - name: Build static library, generate headers, and zip to file
# run: ./build_for_c.sh "${{ matrix.crypto_backend }}"
#
# - name: Upload artifact
# uses: actions/upload-artifact@v3
# with:
# name: static-lib-and-headers
# path: ./target/staticlib-*.zip
#
#
# run-example-on-qemu:
# needs: unit-tests
# runs-on: ubuntu-latest
#
# strategy:
# fail-fast: false
# matrix:
# crypto_backend: [crypto-psa]
# ead: [ead-none, ead-zeroconf]
#
# steps:
# - name: Checkout repo
# uses: actions/checkout@v3
#
# - name: Install arm targets for Rust
# run: rustup target add thumbv7m-none-eabi
# - name: Install arm gcc
# run: sudo apt-get -y update && sudo apt-get -y install gcc-arm-none-eabi
# - name: Install QEMU ARM emulator
# run: sudo apt-get -y install qemu-system-arm
#
# - name: Run tests in QEMU
# run: cd examples/edhoc-rs-no_std && cargo run --target="thumbv7m-none-eabi" --no-default-features --features="${{ matrix.crypto_backend }}, ${{ matrix.ead }}" --release
#
#
# build-example-for-cortex-m4:
# needs: unit-tests
# runs-on: ubuntu-latest
#
# strategy:
# fail-fast: false
# matrix:
# crypto_backend: [crypto-psa, crypto-cryptocell310]
# ead: [ead-none, ead-zeroconf]
#
# steps:
# - name: Checkout repo
# uses: actions/checkout@v3
#
# - name: Install arm targets for Rust
# run: rustup target add thumbv7em-none-eabihf
# - name: Install arm gcc
# run: sudo apt-get -y update && sudo apt-get -y install gcc-arm-none-eabi
#
# - name: Build example
# run: cd examples/edhoc-rs-no_std && cargo build --target="thumbv7em-none-eabihf" --no-default-features --features="${{ matrix.crypto_backend }}, ${{ matrix.ead }}, rtt" --release
#
#
# build-coap-example:
# needs: unit-tests
# runs-on: ubuntu-latest
#
# steps:
# - name: Checkout repo
# uses: actions/checkout@v3
#
# - name: Build server
# run: cargo build --bin coapserver
#
# - name: Build client
# run: cargo build --bin coapclient
#
# - name: Build coap-handler based server
# run: cargo build --bin coapserver-coaphandler
#
#
# release:
# runs-on: ubuntu-latest
# needs: [build-edhoc-package, run-example-on-qemu, build-example-for-cortex-m4, build-coap-example, generate-fstar, build-static-lib-and-headers]
# if: >-
# github.event_name == 'push' &&
# startsWith(github.event.ref, 'refs/tags')
#
# steps:
# - name: Checkout repo
# uses: actions/checkout@v3
# - name: Download artifacts
# uses: actions/download-artifact@v3
# with:
# name: fstar-code
# path: ./release-artifacts
# - name: Download artifacts
# uses: actions/download-artifact@v3
# with:
# name: static-lib-and-headers
# path: ./release-artifacts
# - name: Release
# uses: ncipollo/release-action@v1
# with:
# generateReleaseNotes: true
# artifacts: "release-artifacts/*"
# token: ${{ secrets.RELEASE_TOKEN }}