Skip to content

Commit ab39526

Browse files
committed
Update to GCC 14.1.0
1 parent b715047 commit ab39526

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/build.yml

+23
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
with:
1717
submodules: true
1818
- name: Free up some space
19+
if: false
1920
run: |
2021
sudo rm --recursive --force \
2122
'/opt/'* \
@@ -50,15 +51,18 @@ jobs:
5051
'x11*' \
5152
'xdg*'
5253
- name: Increase swap space
54+
if: false
5355
run: |
5456
sudo swapoff -a
5557
sudo fallocate -l '15G' '/mnt/swapfile'
5658
sudo mkswap '/mnt/swapfile'
5759
sudo swapon '/mnt/swapfile'
5860
- name: Install required dependencies
61+
if: false
5962
run: |
6063
sudo apt-get install 'libxml2-dev'
6164
- name: Setup Linux cross-compiler
65+
if: false
6266
run: |
6367
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')")"
6468
declare -r SPHYNX_TARBALL='/tmp/toolchain.tar.xz'
@@ -70,6 +74,7 @@ jobs:
7074
echo 'SPHYNX_HOME=/tmp/sphynx' >> "${GITHUB_ENV}"
7175
echo '/tmp/sphynx/bin' >> "${GITHUB_PATH}"
7276
- name: Setup Android cross-compiler
77+
if: false
7378
uses: nttld/setup-ndk@main
7479
id: setup-ndk
7580
with:
@@ -80,6 +85,7 @@ jobs:
8085
sudo sed --in-place '/CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG/d' '/usr/local/share/cmake-'*'/Modules/Platform/Android.cmake'
8186
echo '${{ steps.setup-ndk.outputs.ndk-path }}/toolchains/llvm/prebuilt/linux-x86_64/bin' >> "${GITHUB_PATH}"
8287
- name: Setup Windows cross-compiler
88+
if: false
8389
run: |
8490
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')")"
8591
declare -r LLVM_MINGW_TARBALL='/tmp/toolchain.tar.xz'
@@ -91,6 +97,7 @@ jobs:
9197
echo 'LLVM_MINGW_HOME=/tmp/llvm-mingw' >> "${GITHUB_ENV}"
9298
echo '/tmp/llvm-mingw/bin' >> "${GITHUB_PATH}"
9399
- name: Setup MacOS X cross-compiler
100+
if: false
94101
run: |
95102
git clone --depth='1' 'https://github.com/tpoechtrager/osxcross.git'
96103
@@ -103,6 +110,7 @@ jobs:
103110
echo "OSXCROSS_HOME=$(realpath './target')" >> "${GITHUB_ENV}"
104111
echo "$(realpath './target/bin')" >> "${GITHUB_PATH}"
105112
- name: Setup NetBSD cross-compiler
113+
if: false
106114
run: |
107115
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')")"
108116
declare -r DAKINI_TARBALL='/tmp/toolchain.tar.xz'
@@ -114,6 +122,7 @@ jobs:
114122
echo 'DAKINI_HOME=/tmp/dakini' >> "${GITHUB_ENV}"
115123
echo '/tmp/dakini/bin' >> "${GITHUB_PATH}"
116124
- name: Setup FreeBSD cross-compiler
125+
if: false
117126
run: |
118127
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')")"
119128
declare -r LOKI_TARBALL='/tmp/toolchain.tar.xz'
@@ -125,6 +134,7 @@ jobs:
125134
echo 'LOKI_HOME=/tmp/loki' >> "${GITHUB_ENV}"
126135
echo '/tmp/loki/bin' >> "${GITHUB_PATH}"
127136
- name: Setup DragonFly cross-compiler
137+
if: false
128138
run: |
129139
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')")"
130140
declare -r DRAGONFLY_CROSS_TARBALL='/tmp/toolchain.tar.xz'
@@ -136,6 +146,7 @@ jobs:
136146
echo 'VENTI_HOME=/tmp/venti' >> "${GITHUB_ENV}"
137147
echo '/tmp/venti/bin' >> "${GITHUB_PATH}"
138148
- name: Setup Haiku cross-compiler
149+
if: false
139150
run: |
140151
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')")"
141152
declare -r SIL_TARBALL='/tmp/toolchain.tar.xz'
@@ -158,6 +169,7 @@ jobs:
158169
echo 'OBGGCC_HOME=/tmp/obggcc' >> "${GITHUB_ENV}"
159170
echo '/tmp/obggcc/bin' >> "${GITHUB_PATH}"
160171
- name: Setup OpenBSD cross-compiler
172+
if: false
161173
run: |
162174
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')")"
163175
declare -r ATAR_TARBALL='/tmp/toolchain.tar.xz'
@@ -169,6 +181,7 @@ jobs:
169181
echo 'ATAR_HOME=/tmp/atar' >> "${GITHUB_ENV}"
170182
echo '/tmp/atar/bin' >> "${GITHUB_PATH}"
171183
- name: Setup Linux musl cross-compiler
184+
if: false
172185
run: |
173186
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')")"
174187
declare -r RAIDEN_TARBALL='/tmp/toolchain.tar.xz'
@@ -180,6 +193,7 @@ jobs:
180193
echo 'RAIDEN_HOME=/tmp/raiden' >> "${GITHUB_ENV}"
181194
echo '/tmp/raiden/bin' >> "${GITHUB_PATH}"
182195
- name: Setup SerenityOS cross-compiler
196+
if: false
183197
run: |
184198
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')")"
185199
declare -r SENNA_TARBALL='/tmp/toolchain.tar.xz'
@@ -191,6 +205,7 @@ jobs:
191205
echo 'SENNA_HOME=/tmp/senna' >> "${GITHUB_ENV}"
192206
echo '/tmp/senna/bin' >> "${GITHUB_PATH}"
193207
- name: Setup Kindle cross-compiler
208+
if: false
194209
run: |
195210
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')")"
196211
declare -r KEL_TARBALL='/tmp/toolchain.tar.xz'
@@ -202,6 +217,7 @@ jobs:
202217
echo 'KEL_HOME=/tmp/kel' >> "${GITHUB_ENV}"
203218
echo '/tmp/kel/bin' >> "${GITHUB_PATH}"
204219
- name: Setup PocketBook cross-compiler
220+
if: false
205221
run: |
206222
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')")"
207223
declare -r NERO_TARBALL='/tmp/toolchain.tar.xz'
@@ -213,6 +229,7 @@ jobs:
213229
echo 'NERO_HOME=/tmp/nero' >> "${GITHUB_ENV}"
214230
echo '/tmp/nero/bin' >> "${GITHUB_PATH}"
215231
- name: Setup reMarkable cross-compiler
232+
if: false
216233
run: |
217234
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')")"
218235
declare -r NAN_TARBALL='/tmp/toolchain.tar.xz'
@@ -224,6 +241,7 @@ jobs:
224241
echo 'NAN_HOME=/tmp/nan' >> "${GITHUB_ENV}"
225242
echo '/tmp/nan/bin' >> "${GITHUB_PATH}"
226243
- name: Setup Cervantes cross-compiler
244+
if: false
227245
run: |
228246
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')")"
229247
declare -r NIL_TARBALL='/tmp/toolchain.tar.xz'
@@ -235,6 +253,7 @@ jobs:
235253
echo 'NIL_HOME=/tmp/nil' >> "${GITHUB_ENV}"
236254
echo '/tmp/nil/bin' >> "${GITHUB_PATH}"
237255
- name: Setup Bookeen cross-compiler
256+
if: false
238257
run: |
239258
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')")"
240259
declare -r AI_TARBALL='/tmp/toolchain.tar.xz'
@@ -246,6 +265,7 @@ jobs:
246265
echo 'AI_HOME=/tmp/ai' >> "${GITHUB_ENV}"
247266
echo '/tmp/ai/bin' >> "${GITHUB_PATH}"
248267
- name: Setup Kobo cross-compiler
268+
if: false
249269
run: |
250270
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')")"
251271
declare -r KAL_TARBALL='/tmp/toolchain.tar.xz'
@@ -257,6 +277,7 @@ jobs:
257277
echo 'KAL_HOME=/tmp/kal' >> "${GITHUB_ENV}"
258278
echo '/tmp/kal/bin' >> "${GITHUB_PATH}"
259279
- name: Setup Tizen cross-compiler
280+
if: false
260281
run: |
261282
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')")"
262283
declare -r NUL_TARBALL='/tmp/toolchain.tar.xz'
@@ -421,6 +442,8 @@ jobs:
421442
fi
422443
423444
rm --force --recursive ./*
445+
446+
break
424447
done
425448
- name: Upload artifact
426449
uses: actions/upload-artifact@main

0 commit comments

Comments
 (0)