-
Notifications
You must be signed in to change notification settings - Fork 0
172 lines (165 loc) · 4.82 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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
name: Rust
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
workflow_call:
inputs:
rust-version:
type: string
required: false
default: nightly
env:
CARGO_TERM_COLOR: always
jobs:
build-linux-x86_64:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Set up cargo cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Set up deno cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
./node_modules
key: ${{ runner.os }}-deno-${{ hashFiles('**/package.json') }}
restore-keys: ${{ runner.os }}-deno-
- name: Set up dependencies
run: make deps
- name: Set up core
run: make v2ray
- name: Build Linux x86_64 binary
run: make release
build-windows-x86_64:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Set up cargo cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Set up deno cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
./node_modules
key: ${{ runner.os }}-deno-${{ hashFiles('**/package.json') }}
restore-keys: ${{ runner.os }}-deno-
- name: Set up dependencies
run: make deps
- name: Set up core
run: make v2ray
- name: Build Windows x86_64 binary
run: make windows-gnu
build-freebsd-x86_64:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Set up cargo cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Set up deno cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
./node_modules
key: ${{ runner.os }}-deno-${{ hashFiles('**/package.json') }}
restore-keys: ${{ runner.os }}-deno-
- name: Set up dependencies
run: make deps
- name: Set up core
run: make v2ray
- name: Build FreeBSD x86_64 binary
run: make freebsd
build-linux-arm64:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Set up cargo cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Set up deno cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
./node_modules
key: ${{ runner.os }}-deno-${{ hashFiles('**/package.json') }}
restore-keys: ${{ runner.os }}-deno-
- name: Set up dependencies
run: make deps
- name: Set up core
run: make v2ray
- name: Build Linux ARM64 binary
run: make aarch64-unknown-linux-musl
test:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Set up cargo cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Set up deno cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
./node_modules
key: ${{ runner.os }}-deno-${{ hashFiles('**/package.json') }}
restore-keys: ${{ runner.os }}-deno-
- name: Set up dependencies
run: make deps
- name: Set up core
run: make v2ray
- name: Run tests
run: make test