Skip to content

Commit

Permalink
check
Browse files Browse the repository at this point in the history
  • Loading branch information
vnghia committed Jan 22, 2024
1 parent 66055a5 commit 6defe73
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,15 @@ jobs:
- name: Install libpq
run: |
vcpkg install libpq[core]:x64-windows-static-release
echo "D:\Thirdparty\vcpkg\installed\x64-windows\bin" >> $GITHUB_PATH
echo "D:\Thirdparty\vcpkg\installed\x64-windows\lib" >> $GITHUB_PATH
echo "PQ_LIB_DIR=D:\Thirdparty\vcpkg\installed\x64-windows\lib" >> $GITHUB_ENV
echo "$VCPKG_INSTALLATION_ROOT\installed\x64-windows\bin" >> $GITHUB_PATH
echo "$VCPKG_INSTALLATION_ROOT\installed\x64-windows\lib" >> $GITHUB_PATH
echo "PQ_LIB_DIR=$VCPKG_INSTALLATION_ROOT\installed\x64-windows\lib" >> $GITHUB_ENV
- name: Check
run: |
printenv
ls "D:\Thirdparty\vcpkg\installed\x64-windows\bin"
ls "D:\Thirdparty\vcpkg\installed\x64-windows\lib"
ls "$VCPKG_INSTALLATION_ROOT\installed\"
ls "$VCPKG_INSTALLATION_ROOT\installed\x64-windows\bin"
ls "$VCPKG_INSTALLATION_ROOT\installed\x64-windows\lib"
- name: Build and test
run: cargo test --locked --target x86_64-pc-windows-msvc

Expand Down

0 comments on commit 6defe73

Please sign in to comment.