This repository has been archived by the owner on Jul 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
288 lines (271 loc) · 16.8 KB
/
gost_fetcher.yaml
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
name: Fetch gost Binaries
#MAX_RUNTIME: 15 Minutes 45 21 * * * [21:45 (09:45 PM) UTC --> (05H+45M) 03:30 AM NPT ]
on:
workflow_dispatch:
schedule:
- cron: "45 21 * * *"
# https://crontab.guru
# https://savvytime.com/converter/utc-to-nepal-kathmandu
env:
# https://i.redd.it/o6xypg00uac91.png
USER_AGENT: "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/115.0.5790.160 Mobile/15E148 Safari/604.1"
GITHUB_TOKEN: ${{ secrets.STATIC_BINARIES_RELEASER }}
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
path: main
filter: "blob:none" #https://github.blog/2020-12-21-get-up-to-speed-with-partial-clone-and-shallow-clone/
- name: Check Version
id: check_version
run: |
# Get latest version
export VERSION=$(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.tag_name' )
# If we get rate-limited, git clone the repo
if [ -z "$VERSION" ]; then
cd $(mktemp -d) && git clone https://github.com/ginuerzh/gost && cd gost
export VERSION=$(git tag --sort=-creatordate | head -n 1)
fi
# Export it to ENV
echo "VERSION=$VERSION" >> $GITHUB_ENV
# Get stored version
export STORED_VERSION=$(cat $GITHUB_WORKSPACE/main/gost/version.txt)
if [ "$VERSION" == "$STORED_VERSION" ]; then
echo "Version $VERSION is already Fetched & Updated"
echo "versions_same=true" >> $GITHUB_ENV
else
echo "Fetching... --> v$VERSION (from <-- v$STORED_VERSION)"
echo "versions_same=false" >> $GITHUB_ENV
fi
shell: bash
- name: Update Version
if: env.versions_same != 'true'
run: |
# Update version.txt with the latest version
echo $VERSION > $GITHUB_WORKSPACE/main/gost/version.txt
echo "Updated version.txt with the latest version $VERSION"
- name: Install CoreUtils
if: env.versions_same != 'true'
run: |
sudo apt-get update -y
sudo apt-get install -y --no-install-recommends bison build-essential ca-certificates flex file jq pkg-config qemu-user-static wget
- name: Setup Env
if: env.versions_same != 'true'
run: |
# Create Output Dir
mkdir -p "$GITHUB_WORKSPACE/main/gost"
#Fetch
- name: Fetch gost bins
if: env.versions_same != 'true'
run: |
#Download
set -x ; set +e
#-------------------------#
#FreeBSD
#amd_x86_64
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'freebsd-amd64')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_amd_x86_64_FreeBSD" \;
#386
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'freebsd-386')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_386_FreeBSD" \;
#-------------------------#
#Linux
#aarch64_arm64 || armv8
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-armv8')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_aarch64_arm64_Linux" \;
#amd64_x86_64
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-amd64')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_amd_x86_64_Linux" \;
#armv5
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-armv5')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_armv5_Linux" \;
#armv6
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-armv6')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_armv6_Linux" \;
#armv7
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-armv7')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_armv7_Linux" \;
#i386
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-386')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_i386_Linux" \;
#mips-hardfloat
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-mips-hardfloat')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_mips_hardfloat_Linux" \;
#mips-softfloat
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-mips-softfloat')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_mips_softfloat_Linux" \;
#mipsle-hardfloat
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-mipsle-hardfloat')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_mipsle_hardfloat_Linux" \;
#mipsle-softfloat
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-mipsle-softfloat')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_mipsle_softfloat_Linux" \;
#mips64
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-mips64' | grep -v 'mips64le')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_mips64_Linux" \;
#mips64le
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-mips64le')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_mips64le_Linux" \;
#riscv64
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-riscv64')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_riscv64_Linux" \;
#s390x
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-s390x')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_s390x_Linux" \;
#-------------------------#
#macOS
#aarch64_arm64
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'darwin-arm64')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_aarch64_arm64_macOS" \;
#amd_x86_64
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'darwin-amd64')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_x86_64_macOS" \;
#Windows
#-------------------------#
#aarch64_arm64
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'windows-arm64')
find . -type f -name '*.zip*' -exec unzip -o {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name '*gost*.exe' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_aarch64_arm64_Windows.exe" \;
#amd_x86
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'windows-386')
find . -type f -name '*.zip*' -exec unzip -o {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name '*gost*.exe' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_amd_x86_Windows.exe" \;
#amd_x86_64
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'windows-amd64')
find . -type f -name '*.zip*' -exec unzip -o {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name '*gost*.exe' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_amd_x86_64_Windows.exe" \;
#-------------------------#
#Any leftovers
set +x
continue-on-error: true
#Cleanup
- name: Cleanup >> Strip >> chmod
if: env.versions_same != 'true'
run: |
#Strip All Linux Bins
find "$GITHUB_WORKSPACE/main/gost/" -type f -name '*_Linux' -exec strip {} \; >/dev/null 2>&1
#chmod +xwr everything
find "$GITHUB_WORKSPACE/main/gost/" -type f -name 'gost*' -exec chmod +xwr {} \; >/dev/null 2>&1
continue-on-error: true
- name: Update README.md
if: env.versions_same != 'true'
run: |
cd "$GITHUB_WORKSPACE/main"
cat ./gost/INFO.md > ./gost/README.md
echo -e "" >> ./gost/README.md
echo '---' >> ./gost/README.md
echo '```console' >> ./gost/README.md
echo -e "" >> ./gost/README.md
echo -e "--> METATDATA" >> ./gost/README.md
/bin/bash -c 'PS4="$ "; file ./gost/gost* | grep -v '.txt' ' &>> ./gost/README.md
echo -e "" >> ./gost/README.md
echo -e "--> SHA256SUM" >> ./gost/README.md
/bin/bash -c 'PS4="$ ";sha256sum ./gost/gost* | grep -v '.txt' ' &>> ./gost/README.md
echo -e '```\n' >> ./gost/README.md
echo -e "" >> ./gost/README.md
echo '---' >> ./gost/README.md
echo -e "" >> ./gost/README.md
echo '- #### Sizes' >> ./gost/README.md
echo -e "" >> ./gost/README.md
echo '```console' >> ./gost/README.md
/bin/bash -c 'PS4="$ ";ls -lh ./gost/gost* | grep -v '.txt' | awk "{print \$5, \$9}" | column -t' &>> ./gost/README.md
echo '```' >> ./gost/README.md
echo -e "" >> ./gost/README.md
echo '---' >> ./gost/README.md
echo -e "" >> ./gost/README.md
echo '- #### Version' >> ./gost/README.md
echo '```console' >> ./gost/README.md
echo -e "" >> ./gost/README.md
/bin/bash -c 'PS4="$ "; set -x; ./gost/gost_amd_x86_64_Linux -V' &>> ./gost/README.md
echo -e "" >> ./gost/README.md
/bin/bash -c 'PS4="$ "; set -x; ./gost/gost_amd_x86_64_Linux -h' &>> ./gost/README.md
echo -e "" >> ./gost/README.md
echo -e "" >> ./gost/README.md
echo '```' >> ./gost/README.md
echo -e "" >> ./gost/README.md
echo '---' >> ./gost/README.md
echo -e "" >> ./gost/README.md
working-directory: main
continue-on-error: true
- name: Git Pull
run: |
cd "$GITHUB_WORKSPACE/main" && git pull origin main
continue-on-error: true
- name: Get DateTime
if: env.versions_same != 'true'
run: |
# Date Time
NEPALI_TIME=$(TZ='Asia/Kathmandu' date +'%Y-%m-%d (%I:%M:%S %p)')
echo "NEPALI_TIME=$NEPALI_TIME" >> $GITHUB_ENV
- uses: stefanzweifel/git-auto-commit-action@v5
with:
repository: ./main
commit_user_name: Azathothas # defaults to "github-actions[bot]"
commit_user_email: [email protected] # defaults to "41898282+github-actions[bot]@users.noreply.github.com"
commit_message: "✅ Fetch gost Binaries 📦 <-- ${{ env.VERSION }} at ${{ env.NEPALI_TIME }} ⌚"
#push_options: '--force'
#Create a new Release & Publish
# Repo: https://github.com/softprops/action-gh-release
# Market-Place: https://github.com/marketplace/actions/gh-release
- name: Releaser
if: env.versions_same != 'true'
uses: softprops/[email protected]
with:
name: "gost ${{ env.VERSION }}"
tag_name: "gost_${{ env.VERSION }}"
prerelease: false
draft: false
generate_release_notes: false
token: "${{ secrets.GITHUB_TOKEN }}"
body: |
`Changelog`: _https://github.com/ginuerzh/gost/releases/tag/${{ env.VERSION }}_
`Install`: _https://github.com/Azathothas/Static-Binaries/tree/main/gost#install-gost_
files: |
${{github.workspace}}/main/gost/*.exe
${{github.workspace}}/main/gost/*_FreeBSD
${{github.workspace}}/main/gost/*_Linux
${{github.workspace}}/main/gost/*_macOS