Add ascon_gen_kat #35
Workflow file for this run
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
# Copyright 2023 The Tongsuo Project Authors. All Rights Reserved. | |
# | |
# Licensed under the Apache License 2.0 (the "License"). You may not use | |
# this file except in compliance with the License. You can obtain a copy | |
# in the file LICENSE in the source distribution or at | |
# https://github.com/Tongsuo-Project/tongsuo-mini/blob/main/LICENSE | |
name: Compiler Zoo CI | |
on: [pull_request, push] | |
permissions: | |
contents: read | |
jobs: | |
compiler: | |
strategy: | |
fail-fast: false | |
matrix: | |
zoo: [ | |
{ | |
cc: gcc-7, | |
distro: ubuntu-20.04 | |
}, { | |
cc: gcc-8, | |
distro: ubuntu-20.04 | |
}, { | |
cc: gcc-9, | |
distro: ubuntu-20.04 | |
}, { | |
cc: gcc-10, | |
distro: ubuntu-20.04 | |
}, { | |
cc: gcc-11, | |
distro: ubuntu-22.04 | |
}, { | |
cc: gcc-12, | |
distro: ubuntu-22.04 | |
}, { | |
cc: clang-6.0, | |
distro: ubuntu-20.04 | |
}, { | |
cc: clang-7, | |
distro: ubuntu-20.04 | |
}, { | |
cc: clang-8, | |
distro: ubuntu-20.04 | |
}, { | |
cc: clang-9, | |
distro: ubuntu-20.04 | |
}, { | |
cc: clang-10, | |
distro: ubuntu-20.04 | |
}, { | |
cc: clang-11, | |
distro: ubuntu-20.04 | |
}, { | |
cc: clang-12, | |
distro: ubuntu-20.04 | |
}, { | |
cc: clang-13, | |
distro: ubuntu-22.04 | |
}, { | |
cc: clang-14, | |
distro: ubuntu-22.04 | |
}, { | |
cc: clang-15, | |
distro: ubuntu-22.04, | |
llvm-ppa-name: jammy | |
}, { | |
cc: clang-16, | |
distro: ubuntu-22.04, | |
llvm-ppa-name: jammy | |
} | |
] | |
# We set per-compiler now to allow testing with both older and newer sets | |
# Often, the full range of oldest->newest compilers we want aren't available | |
# in a single version of Ubuntu. | |
runs-on: ${{ matrix.zoo.distro }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install packages | |
run: | | |
llvm_ppa_name="${{ matrix.zoo.llvm-ppa-name }}" | |
# In the Matrix above, we set llvm-ppa-name if an LLVM version isn't | |
# part of the Ubuntu version we're using. See https://apt.llvm.org/. | |
if [[ -n ${llvm_ppa_name} ]] ; then | |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key |\ | |
gpg --dearmor |\ | |
sudo tee /usr/share/keyrings/llvm-snapshot.gpg.key > /dev/null | |
clang_version="${{ matrix.zoo.cc }}" | |
clang_version="${clang_version/clang-}" | |
echo "deb [signed-by=/usr/share/keyrings/llvm-snapshot.gpg.key] http://apt.llvm.org/${{ matrix.zoo.llvm-ppa-name }}/ llvm-toolchain-${{ matrix.zoo.llvm-ppa-name }}-${clang_version} main" \ | |
| sudo tee /etc/apt/sources.list.d/llvm.list | |
echo "deb-src [signed-by=/usr/share/keyrings/llvm-snapshot.gpg.key] http://apt.llvm.org/${{ matrix.zoo.llvm-ppa-name }}/ llvm-toolchain-${{ matrix.zoo.llvm-ppa-name }}-${clang_version} main" \ | |
| sudo tee -a /etc/apt/sources.list.d/llvm.list | |
cat /etc/apt/sources.list.d/llvm.list | |
fi | |
sudo apt-get update | |
sudo apt-get -y install ${{ matrix.zoo.cc }} | |
sudo apt-get -y install cmake python3 python3-pip | |
- name: Configure CMake | |
run: cmake -B ${{github.workspace}}/build -D CMAKE_C_COMPILER=${{ matrix.zoo.cc }} -DWITH_ALL=ON | |
- name: Build | |
run: cmake --build ${{github.workspace}}/build | |
- name: Test | |
working-directory: ${{github.workspace}}/build | |
run: | | |
python3 -m venv ${{github.workspace}}/.venv | |
source ${{github.workspace}}/.venv/bin/activate | |
pip3 install -r ${{github.workspace}}/test/requirements.txt | |
ctest -C ${{env.BUILD_TYPE}} | |
- name: debug | |
if: ${{ failure() }} | |
run: | | |
cat ${{github.workspace}}/build/Testing/Temporary/LastTest.log |