-
-
Notifications
You must be signed in to change notification settings - Fork 133
143 lines (137 loc) · 5.42 KB
/
ringrtc.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
name: RingRTC CI
on:
push:
branches: [ main, 'staging/*' ]
pull_request: # all target branches
jobs:
code_formatting:
name: Code Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup toolchain install $(cat rust-toolchain) --profile minimal --component rustfmt
- name: Check rust format
run: cargo fmt -- --check
working-directory: src/rust
- name: Install for node
run: yarn install --frozen-lockfile
working-directory: src/node
- name: Check typescript format
run: yarn format -c
working-directory: src/node
lints:
name: Lints
runs-on: ubuntu-latest
steps:
- name: Install protoc
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
- uses: actions/checkout@v3
- run: rustup toolchain install $(cat rust-toolchain) --profile minimal --component clippy --target aarch64-linux-android,aarch64-apple-ios
- run: shellcheck **/*.sh bin/build-aar bin/build-call_sim-cli bin/build-cli bin/build-electron bin/build-gctc bin/build-ios bin/build-javadoc bin/build-rustdoc bin/build-target bin/fetch-artifact bin/gsync-webrtc bin/prepare-workspace bin/rust-lint-check bin/set-up-for-cocoapods src/rust/scripts/run-tests
- name: Clippy
run: cargo clippy --tests --features sim -- -D warnings
working-directory: src/rust
- name: Clippy (Android)
run: cargo clippy --target aarch64-linux-android -- -D warnings
working-directory: src/rust
- name: Clippy (iOS)
run: cargo clippy --target aarch64-apple-ios -- -D warnings
working-directory: src/rust
- name: Clippy (Electron)
run: cargo clippy --features electron -- -D warnings
working-directory: src/rust
- name: Clippy (group_call)
run: cargo clippy --bin group_call --features native,http -- -D warnings
working-directory: src/rust
- name: Clippy (call_link)
run: cargo clippy --bin call_link --features sim,http,rand_chacha -- -D warnings
working-directory: src/rust
- name: Clippy (call_sim-cli)
run: cargo clippy --bin call_sim-cli --features call_sim -- -D warnings
working-directory: src/rust
- name: Clippy (call_sim)
run: cargo clippy -- -D warnings
working-directory: call_sim
- name: Clippy (signaling_server)
run: cargo clippy -- -D warnings
working-directory: call_sim/docker/signaling_server
- name: Install for node
run: yarn install --frozen-lockfile
working-directory: src/node
- name: Check typescript
run: yarn lint
working-directory: src/node
- name: Check package.json for prebuildChecksum
run: >-
grep -q '"prebuildChecksum": ""' package.json
working-directory: src/node
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Install protoc
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
- uses: actions/checkout@v3
- run: rustup toolchain install $(cat rust-toolchain) --profile minimal
- name: Run rust tests
run: cd src/rust && ./scripts/run-tests
electron:
name: Electron Tests
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
include:
- os: ubuntu-latest
install-deps: sudo apt-get update && sudo apt-get install -y protobuf-compiler
test-runner: xvfb-run --auto-servernum
- os: windows-latest
install-deps: choco install protoc
- os: macos-latest
install-deps: brew install protobuf coreutils
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash # as opposed to PowerShell
steps:
- name: Install dependencies
run: ${{ matrix.install-deps }}
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: 'src/node/.nvmrc'
- run: rustup toolchain install $(cat rust-toolchain) --profile minimal
- run: bin/fetch-artifact -p desktop
- run: bin/build-electron --release --ringrtc-only
- run: yarn install --frozen-lockfile
working-directory: src/node
- run: yarn build
working-directory: src/node
- run: ${{ matrix.test-runner }} yarn test
working-directory: src/node
android:
name: Android Build
runs-on: ubuntu-latest
steps:
- name: Install protoc
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
- uses: actions/checkout@v3
- run: rustup toolchain install $(cat rust-toolchain) --profile minimal --target aarch64-linux-android,armv7-linux-androideabi,x86_64-linux-android,i686-linux-android
- run: bin/fetch-artifact -p android
- run: bin/build-aar --release --ringrtc-only
ios:
name: iOS Tests
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- run: brew install protobuf coreutils # for grealpath
- run: rustup toolchain install $(cat rust-toolchain) --profile minimal --target x86_64-apple-ios
- run: bin/fetch-artifact -p ios
- run: bin/build-ios --release --ringrtc-only --host-sim-only
- run: pod install
working-directory: src/ios/SignalRingRTC
# Pick a phone model here that's likely to work on recent Xcodes.
- run: xcodebuild test -workspace SignalRingRTC.xcworkspace -scheme SignalRingRTC -destination 'platform=iOS Simulator,name=iPhone 13'
working-directory: src/ios/SignalRingRTC
env:
TEST_RUNNER_RINGRTC_MAX_LOG_LEVEL: 2 # warnings only