Skip to content

Commit

Permalink
Fix maybe?
Browse files Browse the repository at this point in the history
  • Loading branch information
michalchecinski committed Apr 4, 2024
1 parent fad1c72 commit 5a66dc0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,17 +96,17 @@ jobs:
- name: Build
working-directory: languages/cpp
run: |
if [[ ${{ runner.os }} == 'macOS' ]]; then
if [[ '${{ runner.os }}' == 'macOS' ]]; then
export DNLOHMANN_PATH=/usr/local/opt/nlohmann-json
export DBOOST_PATH=/usr/local/opt/boost
fi
if [[ ${{ runner.os }} == 'Linux' ]]; then
if [[ '${{ runner.os }}' == 'Linux' ]]; then
export DNLOHMANN_PATH=/usr/share/doc/nlohmann-json3-dev
export DBOOST_PATH=/usr/share/doc/libboost-all-dev
fi
if [[ ${{ runner.os }} == 'Windows' ]]; then
if [[ '${{ runner.os }}' == 'Windows' ]]; then
export DNLOHMANN_PATH=C:\Users\runneradmin\miniconda3\envs\conda-env\nlohmann_json
export DBOOST_PATH=C:\Users\runneradmin\miniconda3\envs\conda-env\boost
fi
Expand Down

0 comments on commit 5a66dc0

Please sign in to comment.