-
Notifications
You must be signed in to change notification settings - Fork 13
60 lines (54 loc) · 1.32 KB
/
rust.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
name: Rust
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "develop" ]
env:
CARGO_TERM_COLOR: always
jobs:
ubuntu_build:
name: Ubuntu Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Rust Toolchain
uses: actions-rs/[email protected]
with:
toolchain: nightly
- name: Configure OpenSSL
run: sudo apt-get install libssl-dev
- name: Install PKG Config
run: sudo apt-get install pkg-config
- name: Export PKG for OpenSSL
run: export PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig
- name: Build
run: cargo build
- name: Run tests
run: cargo test --verbose
windows_build:
name: Windows Build
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup Rust Toolchain
uses: actions-rs/[email protected]
with:
toolchain: nightly
- name: Build
run: cargo build
- name: Run tests
run: cargo test --verbose
mac_build:
name: Mac Build
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Setup Rust Toolchain
uses: actions-rs/[email protected]
with:
toolchain: nightly
- name: Build
run: cargo build
- name: Run tests
run: cargo test --verbose