Skip to content

Commit

Permalink
Make build step verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
samjwu committed May 22, 2024
1 parent f0ab0df commit 32b8bd0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,9 @@ jobs:
mkdir build
cd build
cmake -DCMAKE_CXX_COMPILER=hipcc -DCMAKE_PREFIX_PATH=/opt/rocm ..
cmake --build .
cmake --build . --target install
cmake --build . || { echo 'CMake build failed'; exit 1; }
cmake --build . --target install || { echo 'CMake install failed'; exit 1; }
echo 'Build and install completed successfully'
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
Expand Down

0 comments on commit 32b8bd0

Please sign in to comment.