-
Notifications
You must be signed in to change notification settings - Fork 6
87 lines (78 loc) · 2.2 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: Test
on:
merge_group:
branches:
- main
- 'release*'
push:
branches:
- main
- 'release*'
pull_request:
branches:
- main
- 'release*'
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [
ubuntu-latest,
macos-latest,
windows-latest,
]
toolchain: [
stable,
]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Go Toolchain
uses: actions/setup-go@v5
with:
go-version: '=1.20.0'
- name: Rust Toolchain
run: |
rustup toolchain install ${{ matrix.toolchain }} --profile minimal --no-self-update
rustup default ${{ matrix.toolchain }}
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- 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: Cargo Build Windows
if: matrix.os == 'windows-latest'
run: |-
$env:SODIUM_LIB_DIR="$(pwd)\vcpkg\packages\libsodium_x64-windows-release\lib"
cargo build --all-targets
- name: Cargo Build
if: matrix.os != 'windows-latest'
run: cargo build --all-targets
- name: Cargo Build - musl
if: matrix.os == 'ubuntu-latest'
run: |
rustup target add x86_64-unknown-linux-musl
cargo build --release --manifest-path=crates/tx5-go-pion-sys/Cargo.toml --target=x86_64-unknown-linux-musl
- name: Cargo Test Windows
if: matrix.os == 'windows-latest'
env:
RUST_LOG: error
RUST_BACKTRACE: 1
run: |-
$env:SODIUM_LIB_DIR="$(pwd)\vcpkg\packages\libsodium_x64-windows-release\lib"
cargo test -- --nocapture
- name: Cargo Test
if: matrix.os != 'windows-latest'
env:
RUST_LOG: error
RUST_BACKTRACE: 1
run: cargo test -- --nocapture