Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/baremetal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ jobs:
name: 'M55-AN547'
makefile: test/baremetal/platform/m55-an547/platform.mk
nix-shell: arm-embedded
exec_wrapper: test/baremetal/platform/m55-an547/exec_wrapper.py
- runner: self-hosted-mps3
name: 'MPS3-M55-HW'
makefile: test/baremetal/platform/m55-an547/platform.mk
nix-shell: arm-embedded
exec_wrapper: exec-on-m55
runs-on: ${{ matrix.target.runner }}
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
Expand All @@ -32,7 +38,8 @@ jobs:
gh_token: ${{ secrets.GITHUB_TOKEN }}
opt: no_opt
func: true
kat: true
acvp: true
kat: false
acvp: false
examples: false
stack: false
exec_wrapper: ${{ matrix.target.exec_wrapper }}
1 change: 0 additions & 1 deletion test/baremetal/platform/m55-an547/platform.mk
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,3 @@ EXTRA_SOURCES = $(wildcard $(M55_AN547_PATH)/*.c)
# The CMSIS files fail compilation if conversion warnings are enabled
EXTRA_SOURCES_CFLAGS = -Wno-conversion -Wno-sign-conversion

EXEC_WRAPPER := $(realpath $(PLATFORM_PATH)/exec_wrapper.py)
2 changes: 1 addition & 1 deletion test/test_mlkem.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include "notrandombytes/notrandombytes.h"

#ifndef NTESTS
#define NTESTS 1000
#define NTESTS 10
#endif

#define CHECK(x) \
Expand Down
Loading