Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
Kissaki committed Mar 14, 2024
1 parent 1460ff6 commit 9ae4695
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,20 @@ jobs:
- name: Build libsodium
run: |
sudo apt-get install libtool libnss3-dev libssl-dev libwolfssl-dev
cd libsodium && ./autogen.sh -s && ./configure --enable-opt && make -j $(nproc) && make check && sudo make install && sudo ldconfig && cd ..
cd libsodium
./autogen.sh -s
./configure --enable-opt
make -j $(nproc)
make check
sudo make install
sudo ldconfig
cd ..
- name: Build and run
run: |
cat /proc/cpuinfo
mkdir build && cd build
cmake .. && make -j $(nproc)
./crypto_benchmark
mkdir build
cd build
cmake ..
make -j $(nproc)
- name: Run
run: ./crypto_benchmark

0 comments on commit 9ae4695

Please sign in to comment.