Add init_msfs in crypto_sign #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: amd64-linux-main-sslh | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- feature/merge_main_into_sslh | |
pull_request: | |
jobs: | |
sct: | |
runs-on: [self-hosted, linux, X64, amd64-main] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: compile | |
run: JASMIN=$(which_jasminc) make -j$JOBS -C src/ CI=1 sct | |
- name: print logs | |
run: JASMIN=$(which_jasminc) make -C src/ CI=1 reporter_sct | |
- name: build tar.gz with with *.log and *.error | |
run: JASMIN=$(which_jasminc) make -C src/ CI=1 logs | |
- name: (does NOT) return error if there are any errors (to avoid spam) | |
run: (make -C src/ CI=1 err) || true | |
- name: libjade-logs-src-sct.tar.gz - contains non-empty logs and errors | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: libjade-logs-src-sct.tar.gz | |
path: src/libjade-logs-src.tar.gz | |
compile: | |
needs: [sct] | |
runs-on: [self-hosted, linux, X64, amd64-main] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: compile | |
run: JASMIN=$(which_jasminc) make -j$JOBS -C src/ CI=1 default | |
- name: print logs | |
run: JASMIN=$(which_jasminc) make -C src/ CI=1 reporter | |
- name: (does NOT) return error if there are any errors (to avoid spam) | |
run: (make -C src/ CI=1 err) || true | |
- name: libjade-logs-src.tar.gz - contains non-empty logs and errors | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: libjade-logs-src.tar.gz | |
path: src/libjade-logs-src.tar.gz | |
test: | |
needs: [compile] | |
runs-on: [self-hosted, linux, X64, amd64-main] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: compile and run | |
run: JASMIN=$(which_jasminc) make -j$JOBS -C test/ CI=1 default | |
- name: print logs | |
run: JASMIN=$(which_jasminc) make -C test/ CI=1 reporter | |
- name: (does NOT) return error if there are any errors | |
run: (make -C test/ CI=1 err) || true | |
- name: libjade-logs-test.tar.gz - contains non-empty logs and errors | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: libjade-logs-test.tar.gz | |
path: test/libjade-logs-test.tar.gz | |