-
-
Notifications
You must be signed in to change notification settings - Fork 175
54 lines (49 loc) · 1.21 KB
/
macos.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
name: macOS
on:
push:
branches: [main]
paths:
- ".github/workflows/macos.yml"
- "gdk4/**"
- "gsk4/**"
- "gtk4/**"
- "gtk4-macros/**"
pull_request:
paths:
- ".github/workflows/macos.yml"
- "gdk4/**"
- "gsk4/**"
- "gtk4/**"
- "gtk4-macros/**"
workflow_dispatch:
jobs:
ci-macos:
name: macOS
runs-on: macos-12
steps:
- uses: actions/checkout@v4
- name: Install GTK
run: |
brew install gtk4
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: clippy
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --features v4_16,xml_validation --manifest-path ./gtk4/Cargo.toml
- name: Clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --features v4_16,xml_validation --manifest-path ./gtk4/Cargo.toml
# FIXME: renable once https://github.com/gtk-rs/gtk4-rs/issues/1235 is fixed
#- name: Tests
# uses: actions-rs/cargo@v1
# with:
# command: test
# args: --features v4_8,xml_validation