Skip to content

Commit

Permalink
ci fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ladnir committed Aug 23, 2024
1 parent 3179392 commit 40bdf00
Showing 1 changed file with 49 additions and 49 deletions.
98 changes: 49 additions & 49 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,64 +84,64 @@ jobs:
rm -rf out/
cd ../..
# # This workflow contains a single job called "build"
# build-osx:
# # The type of runner that the job will run on
# runs-on: macos-14
# This workflow contains a single job called "build"
build-osx:
# The type of runner that the job will run on
runs-on: macos-14

# # Steps represent a sequence of tasks that will be executed as part of the job
# steps:
# # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
# - uses: actions/checkout@v2
# with:
# submodules: recursive
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
with:
submodules: recursive

# # Runs a set of commands using the runners shell
# - name: build cryptoTools
# run: python3 build.py --par=4 -D ENABLE_RELIC=ON -D ENABLE_BOOST=OFF -D ENABLE_SSE=OFF
# Runs a set of commands using the runners shell
- name: build cryptoTools
run: python3 build.py --par=4 -D ENABLE_RELIC=ON -D ENABLE_BOOST=OFF -D ENABLE_SSE=OFF

# - name: unit tests
# run: ./out/build/osx/frontend_cryptoTools/frontend_cryptoTools -u
- name: unit tests
run: ./out/build/osx/frontend_cryptoTools/frontend_cryptoTools -u


# - name: find source tree
# run: |
# cd tests_cryptoTools/cmakeTests
# cmake -S . -B out/ -DCMAKE_BUILD_TYPE=Release -D CMAKE_PREFIX_PATH=../../
# cmake --build out/
# ./out/main
# rm -rf out/
# cd ../..
- name: find source tree
run: |
cd tests_cryptoTools/cmakeTests
cmake -S . -B out/ -DCMAKE_BUILD_TYPE=Release -D CMAKE_PREFIX_PATH=../../
cmake --build out/
./out/main
rm -rf out/
cd ../..
# - name: hint test
# run: |
# cd tests_cryptoTools/cmakeTests
# cmake -S . -B out/ -D CRYPTOTOOLS_HINT=../..
# cmake --build out/
# ./out/main
# rm -rf out/
# cd ../..
- name: hint test
run: |
cd tests_cryptoTools/cmakeTests
cmake -S . -B out/ -D CRYPTOTOOLS_HINT=../..
cmake --build out/
./out/main
rm -rf out/
cd ../..
# - name: install prefix test
# run: |
# python3 build.py --install=~/install
# cd tests_cryptoTools/cmakeTests
# cmake -S . -B out/ -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=~/install
# cmake --build out/
# ./out/main
# rm -rf out/
# cd ../..
- name: install prefix test
run: |
python3 build.py --install=~/install
cd tests_cryptoTools/cmakeTests
cmake -S . -B out/ -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=~/install
cmake --build out/
./out/main
rm -rf out/
cd ../..
# - name: install test
# run: |
# python3 build.py --install --sudo
# cd tests_cryptoTools/cmakeTests
# cmake -S . -B out/ -DCMAKE_BUILD_TYPE=Release
# cmake --build out/
# ./out/main
# rm -rf out/
# cd ../..
- name: install test
run: |
python3 build.py --install --sudo
cd tests_cryptoTools/cmakeTests
cmake -S . -B out/ -DCMAKE_BUILD_TYPE=Release
cmake --build out/
./out/main
rm -rf out/
cd ../..

# # This workflow contains a single job called "build"
Expand Down

0 comments on commit 40bdf00

Please sign in to comment.