Skip to content

Commit

Permalink
actions UPDATE set pkg-config path
Browse files Browse the repository at this point in the history
  • Loading branch information
michalvasko committed Nov 3, 2023
1 parent bf3922d commit b61f0c8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ jobs:
cd libnetconf2
mkdir build
cd build
PKG_CONFIG_PATH=$RUNNER_TEMP/lib
cmake -DCMAKE_INSTALL_PREFIX=$RUNNER_TEMP -DCMAKE_INCLUDE_PATH=$RUNNER_TEMP/include -DCMAKE_LIBRARY_PATH=$RUNNER_TEMP/lib -DENABLE_TESTS=OFF ..
make -j2
sudo make install
Expand All @@ -89,7 +88,7 @@ jobs:
- name: Configure
run: |
mkdir build; cd build
cmake -DCMAKE_INCLUDE_PATH=$RUNNER_TEMP/include -DCMAKE_LIBRARY_PATH=$RUNNER_TEMP/lib -DCMAKE_PROGRAM_PATH=$RUNNER_TEMP/bin ..
cmake -DCMAKE_PREFIX_PATH=$RUNNER_TEMP -DCMAKE_INCLUDE_PATH=$RUNNER_TEMP/include -DCMAKE_LIBRARY_PATH=$RUNNER_TEMP/lib -DCMAKE_PROGRAM_PATH=$RUNNER_TEMP/bin ..
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand Down

0 comments on commit b61f0c8

Please sign in to comment.