Skip to content

clear-stack: add branch description in doc/; add 2 new jobs in clears… #10

clear-stack: add branch description in doc/; add 2 new jobs in clears…

clear-stack: add branch description in doc/; add 2 new jobs in clears… #10

name: amd64-linux-main
on:
workflow_dispatch:
push:
branches:
- feature/clear-stack
pull_request:
jobs:
compile-clear-stack-loop:
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 JFLAGS="-stack-zeroization loopSCT" 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
compile-clear-stack-unrolled:
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 JFLAGS="-stack-zeroization unrolled" 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-unrolled.tar.gz - contains non-empty logs and errors
if: always()
uses: actions/upload-artifact@v3
with:
name: libjade-logs-src-clear-stack-unrolled.tar.gz
path: src/libjade-logs-src.tar.gz
compile-clear-stack-loop-register-zeroization all:

Check failure on line 54 in .github/workflows/amd64-linux-clear-stack.yml

View workflow run for this annotation

GitHub Actions / amd64-linux-main

Invalid workflow file

The workflow is not valid. .github/workflows/amd64-linux-clear-stack.yml (Line: 54, Col: 3): The identifier 'compile-clear-stack-loop-register-zeroization all' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters. .github/workflows/amd64-linux-clear-stack.yml (Line: 75, Col: 3): The identifier 'compile-clear-stack-unrolled-register-zeroization all' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters.
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 JFLAGS="-stack-zeroization loopSCT -register-zeroization all" 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
compile-clear-stack-unrolled-register-zeroization all:
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 JFLAGS="-stack-zeroization unrolled -register-zeroization all" 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-unrolled.tar.gz - contains non-empty logs and errors
if: always()
uses: actions/upload-artifact@v3
with:
name: libjade-logs-src-clear-stack-unrolled.tar.gz
path: src/libjade-logs-src.tar.gz
test-clear-stack-loop:
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 JFLAGS="-stack-zeroization loopSCT" 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
test-clear-stack-unrolled:
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 JFLAGS="-stack-zeroization unrolled" 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-unrolled.tar.gz - contains non-empty logs and errors
if: always()
uses: actions/upload-artifact@v3
with:
name: libjade-logs-test-clear-stack-unrolled.tar.gz
path: test/libjade-logs-test.tar.gz
test-clear-stack-loop-register-zeroization-all:
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 JFLAGS="-stack-zeroization loopSCT -register-zeroization all" 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-register-zeroization-all.tar.gz - contains non-empty logs and errors
if: always()
uses: actions/upload-artifact@v3
with:
name: libjade-logs-test-clear-stack-loop-register-zeroization-all.tar.gz
path: test/libjade-logs-test.tar.gz
test-clear-stack-unrolled-register-zeroization-all:
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 JFLAGS="-stack-zeroization unrolled -register-zeroization all" 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-unrolled-register-zeroization-all.tar.gz - contains non-empty logs and errors
if: always()
uses: actions/upload-artifact@v3
with:
name: libjade-logs-test-clear-stack-unrolled-register-zeroization-all.tar.gz
path: test/libjade-logs-test.tar.gz