-
Notifications
You must be signed in to change notification settings - Fork 61
161 lines (130 loc) · 4.17 KB
/
ci.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
name: CI
on: [push, pull_request]
jobs:
Check_formatting:
name: 'Check formatting'
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Get Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
override: true
- name: Check formatting
run: cargo fmt --all -- --check
Linux_default:
name: '[Linux, default] Build and test'
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Get stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
run: cargo build
- name: Test
run: cargo test --all
- name: Build examples and benches
run: cargo build --examples --benches
Linux_native_tls_notif:
name: '[Linux, native TLS + notifications] Build and test'
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Install native dependencies
run: |
sudo apt-get update
sudo apt-get install libdbus-1-dev pkg-config libssl-dev
- name: Get stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
run: |
cargo build --no-default-features \
--features "tls-native desktop-notifications"
- name: Test
run: |
cargo test --no-default-features \
--features "tls-native desktop-notifications"
macOS_default:
name: '[macOS, default] Build and test'
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Get stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
run: cargo build
- name: Test
run: cargo test
- name: Build examples and benches
run: cargo build --examples --benches
macOS_native_tls_notif:
name: '[macOS, native TLS + notifications] Build and test'
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Get stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
run: |
cargo build --no-default-features \
--features "tls-native desktop-notifications"
- name: Test
run: |
cargo test --no-default-features \
--features "tls-native desktop-notifications"
# Updating dependencies can break the static build.
Linux_static_build_default:
name: Make statically linked executable (default)
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Install native dependencies
run: |
sudo apt-get update
sudo apt-get install libdbus-1-dev pkg-config libssl-dev \
musl musl-dev musl-tools
- name: Get stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: x86_64-unknown-linux-musl
override: true
- name: '[Linux] Make statically linked executable'
run: |
RUST_BACKTRACE=1 \
cargo build --release --verbose --target=x86_64-unknown-linux-musl
Linux_static_build_desktop_notifications:
name: '[Linux] Make statically linked executable (desktop notifications)'
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Install native dependencies
run: |
sudo apt-get update
sudo apt-get install libdbus-1-dev pkg-config libssl-dev \
musl musl-dev musl-tools
- name: Get stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: x86_64-unknown-linux-musl
override: true
- name: Make statically linked executable
run: |
RUST_BACKTRACE=1 \
cargo build --release --verbose --target=x86_64-unknown-linux-musl \
--features=desktop-notifications-static-linking