Skip to content

Commit

Permalink
ci: build needs sudo on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
brenoepics authored May 19, 2024
1 parent c977e1e commit 90374cf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ jobs:
mkdir build
cd build
cmake .. -G"Ninja" -DBUILD_SHARED_LIBS=ON -DOQS_BUILD_ONLY_LIB=ON
ninja install
if [ "${{ matrix.os }}" != "windows-latest" ]; then
sudo ninja install
else
ninja install
fi
working-directory: liboqs

- name: Set up JDK ${{ matrix.java-version }}
Expand Down

0 comments on commit 90374cf

Please sign in to comment.