-
Notifications
You must be signed in to change notification settings - Fork 11
57 lines (52 loc) · 1.45 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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_LIB_DIR=\"$HOME\\vcpkg\\packages\\libsodium_x64-windows-release\\lib\"" >> "$GITHUB_ENV"
- name: Install lair-keystore-0.4.4 for fwd compat test
shell: bash
run: |
cargo install lair_keystore@0.4.4 --debug
mv $(which lair-keystore){,-0.4.4}
- name: Make Test
if: matrix.os != 'windows-latest'
run: make test