-
Notifications
You must be signed in to change notification settings - Fork 10
63 lines (49 loc) · 1.53 KB
/
pr-build-check.yml
File metadata and controls
63 lines (49 loc) · 1.53 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
name: PR Build Check
on:
pull_request:
branches: [main]
jobs:
build-rust-macos-aarch64:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Build Rust library
working-directory: wrywebview
run: cargo build --release --target aarch64-apple-darwin
build-rust-macos-x86_64:
runs-on: macos-15-intel
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Build Rust library
working-directory: wrywebview
run: cargo build --release --target x86_64-apple-darwin
build-rust-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev libxdo-dev
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Build Rust library
working-directory: wrywebview
run: cargo build --release --target x86_64-unknown-linux-gnu
build-rust-windows:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Build Rust library
working-directory: wrywebview
run: cargo build --release --target x86_64-pc-windows-msvc