Using docker seems to be better to avoid snap #144
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: Test | |
on: | |
push: | |
# thanks to https://izumisy.work/entry/2022/03/28/140644 | |
jobs: | |
ubuntu-2204: | |
name: ubuntu-2204 | |
runs-on: Ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Buildx | |
uses: docker/setup-buildx-action@v2 | |
- uses: docker/build-push-action@v2 | |
with: | |
file: Dockerfile | |
tags: tfhepp-2204 | |
push: false | |
load: true | |
cache-from: type=gha,scope=buildx-${{ github.workflow }}-${{ github.job }} | |
cache-to: type=gha,mode=max,scope=buildx-${{ github.workflow }}-${{ github.job }} | |
- uses: addnab/docker-run-action@v3 | |
with: | |
image: tfhepp-2204 | |
run: /TFHEpp/build/test/test.sh | |
ubuntu-2404: | |
name: ubuntu-2404 | |
runs-on: Ubuntu-latest | |
container: | |
image: ubuntu:24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install libraries | |
run: | | |
apt-get update | |
apt-get upgrade -y | |
apt-get install -y build-essential g++ libomp-dev cmake git ninja-build libfftw3-dev wget curl | |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | bash -s -- -y | |
source $HOME/.cargo/env' | |
wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB && apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB && echo "deb https://apt.repos.intel.com/oneapi all main" | tee /etc/apt/sources.list.d/oneAPI.list && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y intel-oneapi-mkl-devel && rm GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | |
rustup default nightly | |
- name: build | |
run: | | |
cmake . -Bbuild -GNinja -DCMAKE_BUILD_TYPE=Release -DENABLE_TEST=ON | |
cd build | |
ninja | |
- name: test | |
run: | | |
cd build | |
test/test.sh |