-
Notifications
You must be signed in to change notification settings - Fork 206
272 lines (250 loc) · 11.6 KB
/
release.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
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
name: Build TWiLight Menu++ Release
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
container: devkitpro/devkitarm
name: Build with Docker using devkitARM
outputs:
commit_tag: ${{ steps.make-cias.outputs.commit_tag }}
commit_hash: ${{ steps.make-cias.outputs.commit_hash }}
author_name: ${{ steps.make-cias.outputs.author_name }}
committer_name: ${{ steps.make-cias.outputs.committer_name }}
commit_subject: ${{ steps.make-cias.outputs.commit_subject }}
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: Install tools
run: |
sudo apt-get update
sudo apt-get install jq p7zip-full python -y
- name: Setup environment
run: |
git config --global safe.directory '*'
echo "commit_tag=$(git describe --abbrev=0 --tags)" >> $GITHUB_OUTPUT
echo "commit_hash=$(git log --format=%h -1)" >> $GITHUB_OUTPUT
# Webhook info
echo "author_name=$(git log -1 $GITHUB_SHA --pretty=%aN)" >> $GITHUB_OUTPUT
echo "committer_name=$(git log -1 $GITHUB_SHA --pretty=%cN)" >> $GITHUB_OUTPUT
echo "commit_subject=$(git log -1 $GITHUB_SHA --pretty=%s)" >> $GITHUB_OUTPUT
- name: Get manual pages
run: |
cd manual/nitrofiles
curl -LO https://github.com/DS-Homebrew/twilight-manual/releases/download/pages/pages.7z
7z x pages.7z
rm pages.7z
- name: Build TWiLightMenu++
run: make package
- name: Make booter and TWiLightMenu CIAs
id: make-cias
run: |
cd booter/
chmod +x make_cia
./make_cia --srl="booter.nds" --id_0=$(git rev-parse --short=7 HEAD) --tikID=$(git rev-parse --short=16 HEAD)
mkdir -p "../7zfile/3DS - CFW users/"
cp "booter.cia" "../7zfile/3DS - CFW users/TWiLight Menu.cia"
- name: Pack 7z Package for release
run: |
# Make artifacts directory
mkdir -p ~/artifacts
# Theme is currently unused
rm -rf 7zfile/_nds/TWiLightMenu/akmenu
# Debug 7z
mv 7zfile/debug debug
7z a TWiLightMenu-debug-release.7z debug
mv TWiLightMenu-debug-release.7z ~/artifacts
mkdir -p 7zfile/_nds/nds-bootstrap/
mkdir -p 7zfile/_nds/TWiLightMenu/3dsmenu/themes/
mkdir -p 7zfile/_nds/TWiLightMenu/boxart/
mkdir -p 7zfile/_nds/TWiLightMenu/dsimenu/themes/
mkdir -p 7zfile/_nds/TWiLightMenu/icons/
mkdir -p 7zfile/_nds/TWiLightMenu/extras/
mkdir -p 7zfile/_nds/TWiLightMenu/extras/fonts/
mkdir -p 7zfile/_nds/TWiLightMenu/gamesettings/
mkdir -p 7zfile/_nds/TWiLightMenu/r4menu/themes/
# nds-bootstrap
mkdir -p nds-bootstrap
cd nds-bootstrap
curl -LO https://github.com/DS-Homebrew/nds-bootstrap/releases/latest/download/nds-bootstrap.7z
7z x nds-bootstrap.7z
mv nds-bootstrap.* ..
curl -LO https://github.com/DS-Homebrew/nds-bootstrap-extras/raw/main/preLoadSettings/preLoadSettingsDSi.pck
curl -LO https://github.com/DS-Homebrew/nds-bootstrap-extras/raw/main/preLoadSettings/preLoadSettings3DS.pck
cd ..
curl -L https://github.com/TWLBot/Builds/blob/master/nds-bootstrap.7z?raw=true -o nds-bootstrap.7z
7z x nds-bootstrap.7z
mv nds-bootstrap/release-bootstrap.ver 7zfile/_nds/
mv nds-bootstrap/nightly-bootstrap.ver 7zfile/_nds/
mv nds-bootstrap/nds-bootstrap-release.nds 7zfile/_nds/
mv nds-bootstrap/nds-bootstrap-nightly.nds 7zfile/_nds/
mv nds-bootstrap/nds-bootstrap-hb-release.nds 7zfile/DSi\&3DS\ -\ SD\ card\ users/_nds/
mv nds-bootstrap/nds-bootstrap-hb-nightly.nds 7zfile/DSi\&3DS\ -\ SD\ card\ users/_nds/
mv nds-bootstrap/preLoadSettingsDSi.pck 7zfile/_nds/nds-bootstrap/
mv nds-bootstrap/preLoadSettings3DS.pck 7zfile/_nds/nds-bootstrap/
# Emulators
mkdir -p 7zfile/_nds/TWiLightMenu/emulators
cd 7zfile/_nds/TWiLightMenu/emulators
curl -LO https://github.com/wavemotion-dave/A8DS/releases/latest/download/A8DS.nds
curl -LO https://github.com/wavemotion-dave/StellaDS/releases/latest/download/StellaDS.nds
curl -LO https://github.com/wavemotion-dave/A5200DS/releases/latest/download/A5200DS.nds
curl -LO https://github.com/wavemotion-dave/A5200DS/releases/latest/download/A5200DSi.nds
curl -LO https://github.com/wavemotion-dave/A7800DS/releases/latest/download/A7800DS.nds
curl -LO https://github.com/wavemotion-dave/NINTV-DS/releases/latest/download/NINTV-DS.nds
curl -LO https://github.com/wavemotion-dave/ColecoDS/releases/latest/download/ColecoDS.nds
curl -LO https://bitbucket.org/Coto88/snemulds/raw/33f5f469b6e6c19cb3e1be9259b407832fce42b9/release/arm7dldi-ntr/SNEmulDS.nds
curl -LO https://bitbucket.org/Coto88/snemulds/raw/33f5f469b6e6c19cb3e1be9259b407832fce42b9/release/arm7dldi-twl/SNEmulDS.srl
curl -LO https://github.com/DS-Homebrew/NesDS/releases/latest/download/nesDS.7z
7z x nesDS.7z nesDS/nesDS.nds
mv nesDS/nesDS.nds nesDS.nds
rm nesDS.7z
rm -rf nesDS
curl -LO https://github.com/FluBBaOfWard/S8DS/releases/latest/download/S8DS.zip
7z x S8DS.zip S8DS.nds
rm S8DS.zip
curl -LO https://github.com/FluBBaOfWard/NGPDS/releases/latest/download/NGPDS.zip
7z x NGPDS.zip NGPDS.nds
rm NGPDS.zip
curl -LO https://github.com/FluBBaOfWard/NitroSwan/releases/latest/download/NitroSwan.zip
7z x NitroSwan.zip NitroSwan.nds
rm NitroSwan.zip
# PicoDriveTWL is a prerelease, so get the latest URL from the GH api
curl -LO $(curl https://api.github.com/repos/DS-Homebrew/PicoDriveTWL/releases | jq --raw-output '.[0].assets[0].browser_download_url' -)
curl -LO https://github.com/DS-Homebrew/PokeMini/releases/latest/download/PokeMini.nds
cd ../../../..
# Players
mkdir -p 7zfile/_nds/TWiLightMenu/apps
cd 7zfile/_nds/TWiLightMenu/apps
curl -LO https://github.com/chishm/tuna-vids/releases/latest/download/tuna-vids_v1.2.zip
7z x tuna-vids_v1.2.zip tuna-vids.nds
rm tuna-vids_v1.2.zip
# curl -LO https://github.com/Gericom/FastVideoDSPlayer/releases/latest/download/FastVideoDS.nds
cd ../../../..
# version.txt
printf "TWiLight Menu++: $(git describe --tags)\nnds-bootstrap: $(cat 7zfile/_nds/release-bootstrap.ver)\n\nRocketRobz, ahezard\n" > 7zfile/version.txt
# Main 7z
cp -r 7zfile TWiLightMenu
cd TWiLightMenu
7z a TWiLightMenu.7z .
mv TWiLightMenu.7z ~/artifacts
# DSi 7z
cp -r DSi\ -\ CFW\ users/SDNAND\ root/* .
rm -rf DSi\ -\ CFW\ users
cp -r DSi\&3DS\ -\ SD\ card\ users/* .
rm -rf DSi\&3DS\ -\ SD\ card\ users
rm -rf 3DS\ -\ CFW\ users
rm -rf Flashcard\ users
rm -rf _nds/GBARunner2_arm7dldi_3ds.nds
rm -rf _nds/GBARunner2_arm7dldi_nodsp_3ds.nds
rm -rf _nds/TWiLightMenu/bootplg.srldr
rm -rf _nds/TWiLightMenu/gbaswitch.srldr
7z a TWiLightMenu-DSi.7z
mv TWiLightMenu-DSi.7z ~/artifacts
# 3DS 7z
cd ..
rm -rf TWiLightMenu
cp -r 7zfile/ TWiLightMenu/
cd TWiLightMenu
cp -r 3DS\ -\ CFW\ users/* .
rm -rf 3DS\ -\ CFW\ users
cp -r DSi\&3DS\ -\ SD\ card\ users/* .
rm -rf DSi\&3DS\ -\ SD\ card\ users
rm -rf DSi\ -\ CFW\ users
rm -rf Flashcard\ users
rm -rf _nds/GBARunner2_arm7dldi_dsi.nds
rm -rf _nds/GBARunner2_arm7dldi_nodsp_dsi.nds
rm -rf _nds/TWiLightMenu/unlaunch
rm -rf _nds/TWiLightMenu/bootplg.srldr
rm -rf _nds/TWiLightMenu/gbaswitch.srldr
7z a TWiLightMenu-3DS.7z
mv TWiLightMenu-3DS.7z ~/artifacts
# Flashcard 7z
cd ..
rm -rf TWiLightMenu
cp -r 7zfile/ TWiLightMenu/
cd TWiLightMenu
cp -r Flashcard\ users/* .
rm -rf Flashcard\ users
rm -rf 3DS\ -\ CFW\ users
rm -rf DSi\&3DS\ -\ SD\ card\ users
rm -rf DSi\ -\ CFW\ users
7z a TWiLightMenu-Flashcard.7z
mv TWiLightMenu-Flashcard.7z ~/artifacts
- name: Publish build to GH Actions
uses: actions/upload-artifact@v3
with:
path: ~/artifacts/*
name: build
# Only run this for non-PR jobs.
publish_build:
runs-on: ubuntu-latest
name: "Publish build to ${{ github.repository }}"
if: ${{ success() }}
needs: build
env:
COMMIT_TAG: ${{ needs.build.outputs.commit_tag }}
outputs:
current_date: ${{ steps.commit.outputs.current_date }}
twlbot_commit: ${{ steps.commit.outputs.twlbot_commit }}
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: build
path: build
- name: Commit and push debug files to TWLBot/Builds
id: commit
run: |
CURRENT_DATE=$(date +"%Y%m%d-%H%M%S")
echo "current_date=$CURRENT_DATE" >> $GITHUB_OUTPUT
git config --global user.email "[email protected]"
git config --global user.name "TWLBot"
git clone --depth 1 https://${{ secrets.TWLBOT_TOKEN }}@github.com/TWLBot/Builds.git
cd Builds/
cp ${{ github.workspace }}/build/TWiLightMenu-debug-release.7z .
git stage .
git commit -m "TWiLightMenu (Release) | $COMMIT_TAG"
git push origin master
- name: Upload to ${{ github.repository }} release
run: |
# Delete debug 7z
rm ${{ github.workspace }}/build/TWiLightMenu-debug-release.7z
ID=$(jq --raw-output '.release.id' $GITHUB_EVENT_PATH)
for file in ${{ github.workspace }}/build/*; do
AUTH_HEADER="Authorization: token ${{ secrets.GITHUB_TOKEN }}"
CONTENT_LENGTH="Content-Length: $(stat -c%s $file)"
CONTENT_TYPE="Content-Type: application/7z-x-compressed"
UPLOAD_URL="https://uploads.github.com/repos/${{ github.repository }}/releases/$ID/assets?name=$(basename $file)"
curl -XPOST -H "$AUTH_HEADER" -H "$CONTENT_LENGTH" -H "$CONTENT_TYPE" --upload-file "$file" "$UPLOAD_URL"
done
send_success_webhook:
runs-on: ubuntu-latest
needs: [publish_build, build]
name: Send success webhook
if: ${{ !startsWith(github.ref, 'refs/pull') && success() }}
env:
CURRENT_DATE: ${{ needs.publish_build.outputs.current_date }}
AUTHOR_NAME: ${{ needs.build.outputs.author_name }}
COMMITTER_NAME: ${{ needs.build.outputs.committer_name }}
COMMIT_SUBJECT: ${{ needs.build.outputs.commit_subject }}
steps:
- name: Send success webhook
run: |
curl -o send.sh https://raw.githubusercontent.com/DS-Homebrew/discord-webhooks/master/send-ghactions.sh
chmod +x send.sh
./send.sh success ${{ secrets.WEBHOOK_URL }}
send_failure_webhook:
runs-on: ubuntu-latest
needs: [publish_build, build]
name: Send failure webhook
if: ${{ !startsWith(github.ref, 'refs/pull') && failure() }}
steps:
- name: Send failure webhook
run: |
curl -o send.sh https://raw.githubusercontent.com/DS-Homebrew/discord-webhooks/master/send-ghactions.sh
chmod +x send.sh
./send.sh failure ${{ secrets.WEBHOOK_URL }}