-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (64 loc) · 1.92 KB
/
test.yml
File metadata and controls
78 lines (64 loc) · 1.92 KB
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
name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
arch: [x64, arm64]
exclude:
# Exclude macOS ARM64 and Windows ARM64 if not supported
- os: windows-latest
arch: arm64
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: install dependencies (ubuntu only)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
- name: Setup Rust Environment
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy
rustflags:
- name: Install Node.js and NPM
uses: actions/setup-node@v3
with:
node-version: 24
cache: npm
- if: matrix.os == 'ubuntu-latest'
name: Install alsa dependency
run: |
sudo apt install libasound2-dev
- if: matrix.os == 'windows-latest'
name: Setup vcpkg
run: |
git clone https://github.com/microsoft/vcpkg .vcpkg
.\.vcpkg\bootstrap-vcpkg.bat
.\.vcpkg\vcpkg integrate install
- if: matrix.os == 'windows-latest'
name: Install OpenBLAS
run: |
.\.vcpkg\vcpkg install openblas:x64-windows-static openblas:x64-windows-static-md
- name: cargo clippy
run: |
cargo clippy
- name: cargo test
run: |
cargo test
- name: npm install
run: |
npm install --global @napi-rs/cli wasm-pack
npm run build:wasm
npm install
- name: npm test
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm run tauri build
npm run lint
npm exec tsc
# npm test