Skip to content

Commit

Permalink
[fix] gh workflows liboprf src was moved around.
Browse files Browse the repository at this point in the history
  • Loading branch information
stef committed Dec 2, 2023
1 parent f5b840f commit 1b1ad66
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ jobs:
sudo apt install -y libsodium-dev pkgconf # build-essential git
# liboprf
git clone https://github.com/stef/liboprf/
cd liboprf
cd liboprf/src
sudo PREFIX=/usr make install
# main libopaque
cd ../src
git submodule update --init --recursive tests/munit
make OPRFHOME=../liboprf debug test # Test a debug build.
make OPRFHOME=../liboprf clean all test # Test a production build.
make OPRFHOME=../liboprf/src debug test # Test a debug build.
make OPRFHOME=../liboprf/src clean all test # Test a production build.
sudo PREFIX=/usr make install
# python3
cd ../python/test
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/js-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
./emsdk activate 1.40.1
source ./emsdk_env.sh
cd ..
make LIBOPRFHOME=../liboprf
make LIBOPRFHOME=../liboprf/src
echo emsdk >.prettierignore
echo libsodium.js >>.prettierignore
make LIBOPRFHOME=../liboprf format es-check test
make LIBOPRFHOME=../liboprf/src format es-check test

0 comments on commit 1b1ad66

Please sign in to comment.