-
Notifications
You must be signed in to change notification settings - Fork 88
57 lines (52 loc) · 1.5 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
55
56
57
name: Build and test (Mac OS)
on:
push:
branches: [ master ]
paths:
- 'src/**'
- 'examples/**'
- '**.rs'
- '**.toml'
- '**.lock'
- '.github/workflows/macos.yml'
pull_request:
branches: [ master ]
paths:
- 'src/**'
- 'examples/**'
- '**.rs'
- '**.toml'
- '**.lock'
- '.github/workflows/macos.yml'
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: macos-latest
steps:
- uses: hecrj/setup-rust-action@v2
with:
rust-version: 1.82.0
- uses: actions/checkout@v4
- name: Install deps
run: |
brew install freetype libvorbis
- name: Build
run: |
git submodule update --init
cargo build --verbose
- name: Run tests
run: |
cargo test --features ci-headless --verbose
# Release can have different build configuration, so test it
cargo test --release --features=ci-headless --verbose
# Also test non-default feature combinations
cargo test --no-default-features --features=ci-headless --verbose
cargo test --no-default-features --features=ci-headless,audio --verbose
cargo test --no-default-features --features=ci-headless,window --verbose
cargo test --no-default-features --features=ci-headless,graphics --verbose
# Test packaging (building from .crate archive, without SFML submodule)
cargo package
- name: TMate debug tests
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3