Skip to content

Commit

Permalink
try env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
gayverjr committed Apr 10, 2023
1 parent bf4c56c commit 764c90c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
sudo apt-get install --yes gcc-11 g++-11 libhdf5-dev libeigen3-dev python3.10-dev python3.10-venv
- name: Configure
run: mkdir -p /github/workspace/opencap/opencap/build; cd /github/workspace/opencap/opencap/build; CC=gcc-11 CXX=g++-11 cmake -S../ -B.
run: mkdir -p $GITHUB_WORKSPACE/opencap/opencap/build; cd $GITHUB_WORKSPACE/opencap/opencap/build; CC=gcc-11 CXX=g++-11 cmake -S../ -B.

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand All @@ -41,7 +41,7 @@ jobs:
queries: +security-and-quality

- name: Build cpp
run: cd /github/workspace/opencap/opencap/build; make -j2
run: cd $GITHUB_WORKSPACE/opencap/opencap/build; make -j2

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
Expand Down

0 comments on commit 764c90c

Please sign in to comment.