add kernel ifdefs #150
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: Asymmetric Algos 128 Bits CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install meson | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y meson | |
- name: Meson setup | |
run: meson setup build -Dkyber_strength=2 -Ddilithium_strength=2 | |
- name: Meson compile | |
run: meson compile -C build | |
- name: Meson test | |
run: meson test -C build |