Skip to content

Commit

Permalink
add PATH for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroshade committed Mar 25, 2024
1 parent 0a873f3 commit b49f5e3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/native-unix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -501,10 +501,12 @@ jobs:
ADBC_USE_ASAN: "0"
ADBC_USE_UBSAN: "0"
run: |
export PATH=$RUNNER_TOOL_CACHE/go/1.21.8/x64/bin:$PATH
./ci/scripts/python_build.sh "$(pwd)" "$(pwd)/build" "$HOME/local"
- name: Build Panic Dummy
shell: bash -l {0}
run: |
export PATH=$RUNNER_TOOL_CACHE/go/1.21.8/x64/bin:$PATH
if [[ $(uname) = "Darwin" ]]; then
make -C ./go/adbc/pkg libadbc_driver_panicdummy.dylib
else
Expand All @@ -518,10 +520,12 @@ jobs:
else
export PANICDUMMY_LIBRARY_PATH=$(pwd)/go/adbc/pkg/libadbc_driver_panicdummy.so
fi
export PATH=$RUNNER_TOOL_CACHE/go/1.21.8/x64/bin:$PATH
env BUILD_ALL=0 BUILD_DRIVER_MANAGER=1 ./ci/scripts/python_test.sh "$(pwd)" "$(pwd)/build" "$HOME/local"
- name: Test Python Driver Flight SQL
shell: bash -l {0}
run: |
export PATH=$RUNNER_TOOL_CACHE/go/1.21.8/x64/bin:$PATH
# Can't use Docker on macOS
pushd $(pwd)/go/adbc
go build -o testserver ./driver/flightsql/cmd/testserver
Expand Down

0 comments on commit b49f5e3

Please sign in to comment.