16
16
with :
17
17
submodules : true
18
18
- name : Free up some space
19
+ if : false
19
20
run : |
20
21
sudo rm --recursive --force \
21
22
'/opt/'* \
@@ -50,15 +51,18 @@ jobs:
50
51
'x11*' \
51
52
'xdg*'
52
53
- name : Increase swap space
54
+ if : false
53
55
run : |
54
56
sudo swapoff -a
55
57
sudo fallocate -l '15G' '/mnt/swapfile'
56
58
sudo mkswap '/mnt/swapfile'
57
59
sudo swapon '/mnt/swapfile'
58
60
- name : Install required dependencies
61
+ if : false
59
62
run : |
60
63
sudo apt-get install 'libxml2-dev'
61
64
- name : Setup Linux cross-compiler
65
+ if : false
62
66
run : |
63
67
declare -r SPHYNX_TAG="$(jq --raw-output '.tag_name' <<< "$(curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --url 'https://api.github.com/repos/AmanoTeam/Sphynx/releases/latest')")"
64
68
declare -r SPHYNX_TARBALL='/tmp/toolchain.tar.xz'
70
74
echo 'SPHYNX_HOME=/tmp/sphynx' >> "${GITHUB_ENV}"
71
75
echo '/tmp/sphynx/bin' >> "${GITHUB_PATH}"
72
76
- name : Setup Android cross-compiler
77
+ if : false
73
78
uses : nttld/setup-ndk@main
74
79
id : setup-ndk
75
80
with :
80
85
sudo sed --in-place '/CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG/d' '/usr/local/share/cmake-'*'/Modules/Platform/Android.cmake'
81
86
echo '${{ steps.setup-ndk.outputs.ndk-path }}/toolchains/llvm/prebuilt/linux-x86_64/bin' >> "${GITHUB_PATH}"
82
87
- name : Setup Windows cross-compiler
88
+ if : false
83
89
run : |
84
90
declare -r LLVM_MINGW_TAG="$(jq --raw-output '.tag_name' <<< "$(curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --url 'https://api.github.com/repos/AmanoTeam/LLVMMinGW-Builds/releases/latest')")"
85
91
declare -r LLVM_MINGW_TARBALL='/tmp/toolchain.tar.xz'
91
97
echo 'LLVM_MINGW_HOME=/tmp/llvm-mingw' >> "${GITHUB_ENV}"
92
98
echo '/tmp/llvm-mingw/bin' >> "${GITHUB_PATH}"
93
99
- name : Setup MacOS X cross-compiler
100
+ if : false
94
101
run : |
95
102
git clone --depth='1' 'https://github.com/tpoechtrager/osxcross.git'
96
103
@@ -103,6 +110,7 @@ jobs:
103
110
echo "OSXCROSS_HOME=$(realpath './target')" >> "${GITHUB_ENV}"
104
111
echo "$(realpath './target/bin')" >> "${GITHUB_PATH}"
105
112
- name : Setup NetBSD cross-compiler
113
+ if : false
106
114
run : |
107
115
declare -r DAKINI_TAG="$(jq --raw-output '.tag_name' <<< "$(curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --url 'https://api.github.com/repos/AmanoTeam/Dakini/releases/latest')")"
108
116
declare -r DAKINI_TARBALL='/tmp/toolchain.tar.xz'
@@ -114,6 +122,7 @@ jobs:
114
122
echo 'DAKINI_HOME=/tmp/dakini' >> "${GITHUB_ENV}"
115
123
echo '/tmp/dakini/bin' >> "${GITHUB_PATH}"
116
124
- name : Setup FreeBSD cross-compiler
125
+ if : false
117
126
run : |
118
127
declare -r LOKI_TAG="$(jq --raw-output '.tag_name' <<< "$(curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --url 'https://api.github.com/repos/AmanoTeam/Loki/releases/latest')")"
119
128
declare -r LOKI_TARBALL='/tmp/toolchain.tar.xz'
@@ -125,6 +134,7 @@ jobs:
125
134
echo 'LOKI_HOME=/tmp/loki' >> "${GITHUB_ENV}"
126
135
echo '/tmp/loki/bin' >> "${GITHUB_PATH}"
127
136
- name : Setup DragonFly cross-compiler
137
+ if : false
128
138
run : |
129
139
declare -r DRAGONFLY_CROSS_TAG="$(jq --raw-output '.tag_name' <<< "$(curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --url 'https://api.github.com/repos/AmanoTeam/Venti/releases/latest')")"
130
140
declare -r DRAGONFLY_CROSS_TARBALL='/tmp/toolchain.tar.xz'
@@ -136,6 +146,7 @@ jobs:
136
146
echo 'VENTI_HOME=/tmp/venti' >> "${GITHUB_ENV}"
137
147
echo '/tmp/venti/bin' >> "${GITHUB_PATH}"
138
148
- name : Setup Haiku cross-compiler
149
+ if : false
139
150
run : |
140
151
declare -r SIL_TAG="$(jq --raw-output '.tag_name' <<< "$(curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --url 'https://api.github.com/repos/AmanoTeam/Sil/releases/latest')")"
141
152
declare -r SIL_TARBALL='/tmp/toolchain.tar.xz'
@@ -158,6 +169,7 @@ jobs:
158
169
echo 'OBGGCC_HOME=/tmp/obggcc' >> "${GITHUB_ENV}"
159
170
echo '/tmp/obggcc/bin' >> "${GITHUB_PATH}"
160
171
- name : Setup OpenBSD cross-compiler
172
+ if : false
161
173
run : |
162
174
declare -r ATAR_TAG="$(jq --raw-output '.tag_name' <<< "$(curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --url 'https://api.github.com/repos/AmanoTeam/Atar/releases/latest')")"
163
175
declare -r ATAR_TARBALL='/tmp/toolchain.tar.xz'
@@ -169,6 +181,7 @@ jobs:
169
181
echo 'ATAR_HOME=/tmp/atar' >> "${GITHUB_ENV}"
170
182
echo '/tmp/atar/bin' >> "${GITHUB_PATH}"
171
183
- name : Setup Linux musl cross-compiler
184
+ if : false
172
185
run : |
173
186
declare -r RAIDEN_TAG="$(jq --raw-output '.tag_name' <<< "$(curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --url 'https://api.github.com/repos/AmanoTeam/Raiden/releases/latest')")"
174
187
declare -r RAIDEN_TARBALL='/tmp/toolchain.tar.xz'
@@ -180,6 +193,7 @@ jobs:
180
193
echo 'RAIDEN_HOME=/tmp/raiden' >> "${GITHUB_ENV}"
181
194
echo '/tmp/raiden/bin' >> "${GITHUB_PATH}"
182
195
- name : Setup SerenityOS cross-compiler
196
+ if : false
183
197
run : |
184
198
declare -r SENNA_TAG="$(jq --raw-output '.tag_name' <<< "$(curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --url 'https://api.github.com/repos/AmanoTeam/Senna/releases/latest')")"
185
199
declare -r SENNA_TARBALL='/tmp/toolchain.tar.xz'
@@ -191,6 +205,7 @@ jobs:
191
205
echo 'SENNA_HOME=/tmp/senna' >> "${GITHUB_ENV}"
192
206
echo '/tmp/senna/bin' >> "${GITHUB_PATH}"
193
207
- name : Setup Kindle cross-compiler
208
+ if : false
194
209
run : |
195
210
declare -r KEL_TAG="$(jq --raw-output '.tag_name' <<< "$(curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --url 'https://api.github.com/repos/AmanoTeam/Kel/releases/latest')")"
196
211
declare -r KEL_TARBALL='/tmp/toolchain.tar.xz'
@@ -202,6 +217,7 @@ jobs:
202
217
echo 'KEL_HOME=/tmp/kel' >> "${GITHUB_ENV}"
203
218
echo '/tmp/kel/bin' >> "${GITHUB_PATH}"
204
219
- name : Setup PocketBook cross-compiler
220
+ if : false
205
221
run : |
206
222
declare -r NERO_TAG="$(jq --raw-output '.tag_name' <<< "$(curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --url 'https://api.github.com/repos/AmanoTeam/Nero/releases/latest')")"
207
223
declare -r NERO_TARBALL='/tmp/toolchain.tar.xz'
@@ -213,6 +229,7 @@ jobs:
213
229
echo 'NERO_HOME=/tmp/nero' >> "${GITHUB_ENV}"
214
230
echo '/tmp/nero/bin' >> "${GITHUB_PATH}"
215
231
- name : Setup reMarkable cross-compiler
232
+ if : false
216
233
run : |
217
234
declare -r NAN_TAG="$(jq --raw-output '.tag_name' <<< "$(curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --url 'https://api.github.com/repos/AmanoTeam/Nan/releases/latest')")"
218
235
declare -r NAN_TARBALL='/tmp/toolchain.tar.xz'
@@ -224,6 +241,7 @@ jobs:
224
241
echo 'NAN_HOME=/tmp/nan' >> "${GITHUB_ENV}"
225
242
echo '/tmp/nan/bin' >> "${GITHUB_PATH}"
226
243
- name : Setup Cervantes cross-compiler
244
+ if : false
227
245
run : |
228
246
declare -r NIL_TAG="$(jq --raw-output '.tag_name' <<< "$(curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --url 'https://api.github.com/repos/AmanoTeam/Nil/releases/latest')")"
229
247
declare -r NIL_TARBALL='/tmp/toolchain.tar.xz'
@@ -235,6 +253,7 @@ jobs:
235
253
echo 'NIL_HOME=/tmp/nil' >> "${GITHUB_ENV}"
236
254
echo '/tmp/nil/bin' >> "${GITHUB_PATH}"
237
255
- name : Setup Bookeen cross-compiler
256
+ if : false
238
257
run : |
239
258
declare -r AI_TAG="$(jq --raw-output '.tag_name' <<< "$(curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --url 'https://api.github.com/repos/AmanoTeam/Ai/releases/latest')")"
240
259
declare -r AI_TARBALL='/tmp/toolchain.tar.xz'
@@ -246,6 +265,7 @@ jobs:
246
265
echo 'AI_HOME=/tmp/ai' >> "${GITHUB_ENV}"
247
266
echo '/tmp/ai/bin' >> "${GITHUB_PATH}"
248
267
- name : Setup Kobo cross-compiler
268
+ if : false
249
269
run : |
250
270
declare -r KAL_TAG="$(jq --raw-output '.tag_name' <<< "$(curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --url 'https://api.github.com/repos/AmanoTeam/Kal/releases/latest')")"
251
271
declare -r KAL_TARBALL='/tmp/toolchain.tar.xz'
@@ -257,6 +277,7 @@ jobs:
257
277
echo 'KAL_HOME=/tmp/kal' >> "${GITHUB_ENV}"
258
278
echo '/tmp/kal/bin' >> "${GITHUB_PATH}"
259
279
- name : Setup Tizen cross-compiler
280
+ if : false
260
281
run : |
261
282
declare -r NUL_TAG="$(jq --raw-output '.tag_name' <<< "$(curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --url 'https://api.github.com/repos/AmanoTeam/Nul/releases/latest')")"
262
283
declare -r NUL_TARBALL='/tmp/toolchain.tar.xz'
@@ -421,6 +442,8 @@ jobs:
421
442
fi
422
443
423
444
rm --force --recursive ./*
445
+
446
+ break
424
447
done
425
448
- name : Upload artifact
426
449
uses : actions/upload-artifact@main
0 commit comments