-
Notifications
You must be signed in to change notification settings - Fork 42
119 lines (116 loc) · 3.24 KB
/
codecov.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
name: CodeCoverage
on:
push:
paths-ignore:
- 'ansible/**'
- 'doc/**'
- 'demo/**'
- 'g3proxy/doc/**'
- 'g3tiles/doc/**'
branches:
- 'master'
- 'lts/**'
pull_request:
branches:
- 'master'
- 'lts/**'
env:
CARGO_TERM_COLOR: always
jobs:
lib-unit-test:
name: lib unit test
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
submodules: true
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: llvm-tools
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install capnproto libc-ares-dev libssl-dev liblua5.4-dev
- name: Install binutils
run: |
cargo install cargo-binutils
- name: run unit test
run: |
./scripts/coverage/lib_unit_test.sh
- name: Upload coverage data
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
disable_search: true
file: output.lcov
flags: lib
name: lib-unit-test
token: ${{ secrets.CODECOV_TOKEN }}
verbose: false
g3proxy-test:
name: g3proxy test
runs-on: ubuntu-24.04
services:
ftp-server:
image: ghcr.io/garethflowers/ftp-server:edge
env:
FTP_USER: ftpuser
FTP_PASS: ftppass
ports:
- '20-21:20-21/tcp'
- '40000-40009:40000-40009/tcp'
volumes:
- /tmp/ftp:/home/user
httpbin:
image: ghcr.io/psf/httpbin:0.10.2
ports:
- 80:8080
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
submodules: true
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: llvm-tools
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install capnproto libc-ares-dev libssl-dev liblua5.4-dev
- name: Install test libs
run: |
sudo apt-get install python3-requests python3-pycurl python3-dnspython python3-socks
- name: Install binutils
run: |
cargo install cargo-binutils
- name: Install dnsmasq
run: |
sudo apt-get install dnsmasq-base
- name: Backup /etc/resolv.conf
run: |
sudo cp /etc/resolv.conf /etc/resolv.conf.backup
- name: Run dnsmasq
run: |
sudo dnsmasq --local-service -C ${{ github.workspace }}/scripts/coverage/g3proxy/dnsmasq.conf
- name: Edit /etc/resolv.conf
run: |
echo "nameserver 127.0.0.1" | sudo tee /etc/resolv.conf
- name: run unit test
run: |
./scripts/coverage/g3proxy.sh
- name: Restore /etc/resolv.conf
run: |
sudo mv /etc/resolv.conf.backup /etc/resolv.conf
- name: Upload coverage data
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
disable_search: true
file: output.lcov
flags: g3proxy
name: g3proxy-all-test
token: ${{ secrets.CODECOV_TOKEN }}
verbose: false