-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Travis CI does not run anymore. The GitHub Actions workflow builds and runs, but the nss encrypt fails at runtime with error code `-8190` - and `PR_GetErrorText` does not return text for it. I don't see how to fix it so suggest we merge as-is (the other tests are run and results are output for them), or to drop nss. => PR discussion concluded to merge and davide planning to investigate.
- Loading branch information
Showing
3 changed files
with
78 additions
and
33 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Build | ||
on: [push, pull_request] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'recursive' | ||
- name: Install dependencies | ||
run: sudo apt-get install libtool libnss3-dev libssl-dev libwolfssl-dev | ||
- name: Checkout libsodium | ||
run: | | ||
mkdir libsodium | ||
cd libsodium | ||
git init | ||
git fetch https://github.com/jedisct1/libsodium.git 3c49e89c19d06d9967180dda887fb15ae2e0fa40 | ||
git checkout FETCH_HEAD | ||
git clone -n https://github.com/jedisct1/libsodium.git | ||
- name: Build libsodium | ||
run: | | ||
cd libsodium | ||
./autogen.sh -s | ||
./configure --enable-opt | ||
make -j $(nproc) | ||
make check | ||
sudo make install | ||
sudo ldconfig | ||
- name: Build | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake .. | ||
make -j $(nproc) | ||
- name: CPUInfo | ||
run: cat /proc/cpuinfo | ||
- name: Run | ||
run: ./build/crypto_benchmark |
This file was deleted.
Oops, something went wrong.
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