fwd compat from 0.4.4 integration test #162
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ | |
ubuntu-latest, | |
macos-latest, | |
windows-latest, | |
] | |
toolchain: [ | |
stable, | |
"1.77.2", # Check the version used by Holochain | |
] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Rust Toolchain | |
run: | | |
rustup toolchain install ${{ matrix.toolchain }} --profile minimal --no-self-update | |
rustup default ${{ matrix.toolchain }} | |
- name: Install vcpkg packages | |
if: matrix.os == 'windows-latest' | |
uses: johnwason/vcpkg-action@v6 | |
id: vcpkg | |
with: | |
triplet: x64-windows-release | |
token: ${{ github.token }} | |
manifest-dir: ${{ github.workspace }}/.github/manifest | |
github-binarycache: true | |
- name: Set vcpkg env | |
shell: bash | |
if: matrix.os == 'windows-latest' | |
run: | | |
echo "SODIUM_USE_PKG_CONFIG=\"1\"" >> "$GITHUB_ENV" | |
echo "VCPKG_ROOT=\"$GITHUB_WORKSPACE\\vcpkg\"" >> "$GITHUB_ENV" | |
#run: echo "SODIUM_LIB_DIR=\"$GITHUB_WORKSPACE\\vcpkg\\packages\\libsodium_x64-windows-release\\lib\"" >> "$GITHUB_ENV" | |
- name: Install lair-keystore-0.4.4 for fwd compat test | |
run: cargo install lair_keystore@0.4.4 --debug | |
- name: Rename lair-keystore to include version | |
shell: bash | |
run: mv $(which lair-keystore){,-0.4.4} | |
- name: Make Test | |
run: make test |