-
Notifications
You must be signed in to change notification settings - Fork 98
126 lines (117 loc) · 3.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
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
name: Rust
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
env:
CARGO_TERM_COLOR: always
jobs:
build_linux:
name: Build for Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Update rust
run: rustup update
- name: Build TQUIC library
run: cargo build -F ffi --verbose
- name: Build TQUIC tools
run: cargo build --all --verbose
build_ios:
name: Build for iOS
runs-on: macos-latest
env:
TARGET: "x86_64-apple-ios"
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Install rust toolchain
run: rustup target add ${{ env.TARGET }}
- name: Remove cdylib from iOS build
run: sed -i -e 's/, "cdylib"//g' Cargo.toml
- name: Run cargo build
uses: actions-rs/cargo@v1
with:
command: build
args: --target=${{ env.TARGET }} --verbose
build_android:
name: Build for Android
runs-on: ubuntu-latest
env:
NDK_LTS_VER: "25"
API_LEVEL: "21"
TARGET: "aarch64-linux-android"
ARCH: "arm64-v8a"
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Install rust toolchain
run: rustup target add ${{ env.TARGET }}
- name: Download Android NDK
run: |
curl --http1.1 -O https://dl.google.com/android/repository/android-ndk-r${{ env.NDK_LTS_VER }}-linux.zip
unzip -q android-ndk-r${{ env.NDK_LTS_VER }}-linux.zip
- name: Install cargo-ndk
uses: actions-rs/[email protected]
with:
crate: cargo-ndk
- name: Run cargo ndk
uses: actions-rs/cargo@v1
with:
command: ndk
args: -t ${{ env.ARCH }} -p ${{ env.API_LEVEL }} -- build --verbose --features ffi
env:
ANDROID_NDK_HOME: ${{ github.workspace }}/android-ndk-r${{ env.NDK_LTS_VER }}
static_analysis:
name: Static analysis
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Update rust
run: rustup update
- name: Code format check
run: cargo fmt --check
- name: Code lint check
run: cargo clippy --all -- -D warnings
unit_testing:
name: Unit testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Update rust
run: rustup update
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Unit testing
run: cargo test --verbose
- name: Generate code coverage
run: cargo llvm-cov --lcov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
fail_ci_if_error: true
fuzz_testing:
name: Fuzz testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Fuzz testing
run: |
rustup install nightly
rustup default nightly
cargo install cargo-fuzz
cargo fuzz run client_conn -- -max_total_time=30
cargo fuzz run server_conn -- -max_total_time=30