-
Notifications
You must be signed in to change notification settings - Fork 48
158 lines (158 loc) · 4.22 KB
/
github-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
name: github-ci
on:
push:
pull_request:
schedule:
- cron: '0 8 15 * *'
jobs:
cargo-test-linux:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
- 1.60.0
# - nightly
env:
TEST_PORT_A: /tmp/ttyS10
TEST_PORT_B: /tmp/ttyS11
RUST_LOG: trace
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v1
- name: install socat
run: |
sudo apt-get update
sudo apt-get install socat -y
socat -V
- name: cargo test
run: cargo test -j1 -- --test-threads=1
env:
TEST_PORT_NAMES: ${{ env.TEST_PORT_A }};${{ env.TEST_PORT_B }}
cargo-test-macOS:
runs-on: macos-latest
strategy:
matrix:
rust:
- stable
- beta
- 1.60.0
# - nightly
env:
TEST_PORT_A: /tmp/ttyS10
TEST_PORT_B: /tmp/ttyS11
RUST_LOG: trace
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v1
- name: install socat
run: |
brew install socat
socat -V
env:
HOMEBREW_NO_AUTO_UPDATE: 1
# Github Actions don't support 'allow-failures': https://github.com/actions/toolkit/issues/399
# Until it does then we'll just have to test building on OSX in the meantime
# - name: cargo test
# run: cargo test -j1 -- --test-threads=1
# env:
# TEST_PORT_NAMES: ${{ env.TEST_PORT_A }};${{ env.TEST_PORT_B }}
- name: cargo build
uses: actions-rs/cargo@v1
with:
command: build
cargo-test-windows:
runs-on: windows-latest
strategy:
matrix:
rust:
- stable
- beta
- 1.60.0
# - nightly
env:
TEST_PORT_A: COM10
TEST_PORT_B: COM11
RUST_LOG: trace
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v1
- uses: ilammy/msvc-dev-cmd@v1
- name: install com0com
run: |
CertMgr.exe /add com0com.cer /s /r localMachine root
CertMgr.exe /add com0com.cer /s /r localMachine trustedpublisher
.\setup_com0com_W7_x64_signed.exe /S
working-directory: .github
- name: setup com0com
run: .\setupc.exe install PortName=${{ env.TEST_PORT_A }},EmuBR=yes PortName=${{ env.TEST_PORT_B }},EmuBR=yes
working-directory: C:\Program Files (x86)\com0com
- name: cargo test
run: cargo test -j1 -- --test-threads=1
env:
TEST_PORT_NAMES: ${{ env.TEST_PORT_A }};${{ env.TEST_PORT_B }}
cargo-fmt:
runs-on: ${{ matrix.os }}
strategy:
matrix:
rust:
- stable
os:
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v1
- name: check format
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
cargo-clippy:
runs-on: ${{ matrix.os }}
strategy:
matrix:
rust:
- stable
os:
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v1
- name: cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings