fix package name #205
This file contains hidden or 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: Install libraries | |
| run: | | |
| apt-get update | |
| apt-get upgrade -y | |
| apt-get install -y git build-essential g++ libomp-dev cmake git ninja-build | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: build | |
| run: | | |
| cmake . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -DENABLE_TEST=ON | |
| cd build | |
| ninja | |
| - name: test | |
| run: | | |
| cd build | |
| test/test.sh | |
| ubuntu-2404-concrete: | |
| name: ubuntu-2404-concrete | |
| runs-on: Ubuntu-latest | |
| container: | |
| image: ubuntu:24.04 | |
| steps: | |
| - name: Install libraries | |
| run: | | |
| apt-get update | |
| apt-get upgrade -y | |
| apt-get install -y git build-essential g++ libomp-dev cmake git ninja-build | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: build | |
| run: | | |
| cmake . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -DENABLE_TEST=ON -DUSE_CONCRETE=ON | |
| cd build | |
| ninja | |
| - name: test | |
| run: | | |
| cd build | |
| test/test.sh | |
| ubuntu-2404-clang: | |
| name: ubuntu-2404-clang | |
| runs-on: Ubuntu-latest | |
| container: | |
| image: ubuntu:24.04 | |
| steps: | |
| - name: Install libraries | |
| run: | |
| apt-get update | |
| apt-get upgrade -y | |
| apt-get install -y git build-essential g++ libomp-dev ninja-build clang lld gnupg | |
| wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | tee /usr/share/keyrings/kitware-archive-keyring.gpg >/dev/null | |
| echo 'deb [signed-by=/usr/share/keyrings/kitware-archive-keyring.gpg] https://apt.kitware.com/ubuntu/ noble main' | tee /etc/apt/sources.list.d/kitware.list >/dev/null | |
| apt-get update | |
| apt-get install -y cmake | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: build | |
| run: | | |
| cmake . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -DCMAKE_LINKER_TYPE=LLD -DENABLE_TEST=ON | |
| cd build | |
| ninja | |
| - name: test | |
| run: | | |
| cd build | |
| test/test.sh |