Skip to content

Commit

Permalink
which cl boo
Browse files Browse the repository at this point in the history
  • Loading branch information
John-LittleBearLabs committed Sep 25, 2024
1 parent 4a4490a commit 6511b3b
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,16 @@ jobs:
run: |
mkdir build
mkdir ipfs-client-dev
CC=`which ${{ matrix.config.cc }}`
CXX=`which ${{ matrix.config.cxx }}`
export CC CXX
if which ${{ matrix.config.cc }}
then
CC=`which ${{ matrix.config.cc }}`
export CC
fi
if which ${{ matrix.config.cxx }}
then
CXX=`which ${{ matrix.config.cxx }}`
export CXX
fi
cmake \
-G "${{ matrix.config.generators }}" \
-S . \
Expand Down

0 comments on commit 6511b3b

Please sign in to comment.