Skip to content

Commit

Permalink
Fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffxy committed Mar 9, 2024
1 parent cca9d03 commit d38380e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/check_cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ jobs:
run: sudo apt update && sudo apt install libarrow-dev libarrow-flight-dev libarrow-flight-sql-dev sqlite3

- name: Configure Project using CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
working-directory: ${{github.workspace}}/cpp
run: cmake -B ${{github.workspace}}/cpp/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}

- name: Compile Project
working-directory: ${{github.workspace}}/build
working-directory: ${{github.workspace}}/cpp/build
run: make -j
timeout-minutes: 15

0 comments on commit d38380e

Please sign in to comment.