Skip to content

Commit

Permalink
debug gha env setting
Browse files Browse the repository at this point in the history
  • Loading branch information
neonphog committed Jun 12, 2024
1 parent 1957895 commit 3fab296
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,17 @@ jobs:
github-binarycache: true

- name: Set vcpkg env
id: set-vcpkg-env
if: matrix.os == 'windows-latest'
run: echo "SODIUM_LIB_DIR=\"$(pwd)\\vcpkg\\packages\\libsodium_x64-windows-release\\lib\"" >> $GITHUB_ENV
run: |
echo "SODIUM_LIB_DIR=\"$(pwd)\\vcpkg\\packages\\libsodium_x64-windows-release\\lib\"" >> $GITHUB_ENV
echo "SODIUM_LIB_DIR=\"$(pwd)\\vcpkg\\packages\\libsodium_x64-windows-release\\lib\"" >> $GITHUB_OUTPUT
- name: Install lair-keystore-0.4.4 for fwd compat test
shell: bash
run: |
echo "FROM ENV: $SODIUM_LIB_DIR"
echo "FROM OUTPUT: ${{ steps.set-vcpkg-env.output.SODIUM_LIB_DIR }}"
cargo install [email protected] --debug
mv $(which lair-keystore){,-0.4.4}
Expand Down

0 comments on commit 3fab296

Please sign in to comment.