-
Notifications
You must be signed in to change notification settings - Fork 47
155 lines (141 loc) · 5.09 KB
/
build.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
# .github/workflows/release.yml
name: Nightly builds
on:
workflow_dispatch: {}
schedule:
- cron: '30 5,17 * * *'
jobs:
build:
name: build ${{ matrix.target }}
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-pc-windows-msvc
os: windows-latest
archive: zip
- target: x86_64-pc-windows-gnu
os: windows-latest
archive: zip
- target: i686-pc-windows-msvc
os: windows-latest
archive: zip
# - target: i686-pc-windows-gnu # error: linker `i686-w64-mingw32-gcc` not found
# os: windows-latest
# archive: zip
- target: x86_64-apple-darwin
os: macos-latest
archive: zip
- target: aarch64-apple-darwin
os: macos-latest
archive: zip
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
archive: tar.gz tar.xz tar.zst
- target: aarch64-unknown-linux-musl
os: ubuntu-latest
archive: tar.gz tar.xz tar.zst
# - target: arch64-unknown-linux-musl
# archive: tar.gz tar.xz tar.zst
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
archive: tar.gz tar.xz tar.zst
- target: arm-unknown-linux-musleabi
os: ubuntu-latest
archive: tar.gz tar.xz tar.zst
- target: arm-unknown-linux-musleabihf
os: ubuntu-latest
archive: tar.gz tar.xz tar.zst
# - target: mips-unknown-linux-musl
# archive: tar.gz tar.xz tar.zst
# - target: mips-unknown-linux-musl
# archive: tar.gz tar.xz tar.zst
# - target: mips64-unknown-linux-muslabi64
# archive: tar.gz tar.xz tar.zst
- target: aarch64-linux-android
os: ubuntu-latest
archive: tar.gz tar.xz tar.zst
# - target: x86_64-unknown-freebsd
# os: ubuntu-latest
# archive: tar.gz tar.xz tar.zst
# - target: x86_64-unknown-netbsd
# os: ubuntu-latest
# archive: tar.gz tar.xz tar.zst
# - target: wasm32-unknown-emscripten
# archive: tar.gz tar.xz tar.zst
runs-on: ${{matrix.os}}
env:
DIST_DIR: smartdns-${{ matrix.target }}
steps:
- name: Checkout
uses: actions/checkout@master
- name: Install Rust Toolchain Components
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
target: ${{ matrix.target }}
- uses: extractions/setup-just@v2
- name: cargo install patch-crate
uses: baptiste0928/cargo-install@v3
with:
crate: patch-crate
- name: Init
run: just init
shell: bash
- name: Build
uses: actions-rsx/cargo@v2
with:
use-cross: ${{ matrix.os == 'ubuntu-latest' }}
command: build
args: --release --target=${{ matrix.target }}
- name: Pre publish
run: |
mkdir $DIST_DIR
cp LICENSE $DIST_DIR
cp README*.md $DIST_DIR
cp etc/smartdns/smartdns.conf $DIST_DIR
shell: bash
- name: Publish archive
if: ${{ !contains(matrix.target, 'windows') && !contains(matrix.target, 'darwin') }}
env:
ARCHIVE_FILE: smartdns-${{ matrix.target }}.tar.gz
run: |
cp target/${{ matrix.target }}/release/smartdns $DIST_DIR
tar -zcvf $ARCHIVE_FILE $DIST_DIR
shasum -a256 $ARCHIVE_FILE > $ARCHIVE_FILE-sha256sum.txt
echo "archive_file=$ARCHIVE_FILE" >> $GITHUB_ENV
- name: Publish zip archive macos
if: ${{ contains(matrix.target, 'darwin') }}
env:
ARCHIVE_FILE: smartdns-${{ matrix.target }}.zip
run: |
cp target/${{ matrix.target }}/release/smartdns $DIST_DIR
zip -9r $ARCHIVE_FILE $DIST_DIR
shasum -a256 $ARCHIVE_FILE > $ARCHIVE_FILE-sha256sum.txt
echo "archive_file=$ARCHIVE_FILE" >> $GITHUB_ENV
- name: Publish zip archive windows
if: ${{ contains(matrix.target, 'windows') }}
env:
ARCHIVE_FILE: smartdns-${{ matrix.target }}.zip
run: |
cp target/${{ matrix.target }}/release/smartdns.exe $DIST_DIR
7z a -tzip $ARCHIVE_FILE $DIST_DIR
echo ${{ hashFiles(format(' smartdns-{0}.zip', matrix.target)) }} > $ARCHIVE_FILE-sha256sum.txt
echo "archive_file=$ARCHIVE_FILE" >> $GITHUB_ENV
shell: bash
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: smartdns-${{ matrix.target }}
retention-days: 30
path: ${{ env.archive_file }}
- name: Publish release
uses: softprops/[email protected]
if: ${{ startsWith(github.ref, 'refs/tags/') }}
with:
draft: false
files: |
${{ env.archive_file }}
${{ env.archive_file }}-sha256sum.txt
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}