Skip to content

Commit 50edca1

Browse files
committed
Update to GCC 15.0.1
1 parent 397987a commit 50edca1

30 files changed

+903
-264
lines changed

.github/workflows/build.yml

+5-12
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
id: check-cache
1818
uses: actions/cache@main
1919
with:
20-
key: gcc-14.2.0
20+
key: gcc-15.0.1
2121
lookup-only: true
2222
path: |
2323
/tmp/x86_64-linux-gnu.tar.xz
@@ -45,7 +45,7 @@ jobs:
4545
if: ${{ steps.check-cache.outputs.cache-hit != 'true' }}
4646
uses: actions/cache@main
4747
with:
48-
key: gcc-14.2.0
48+
key: gcc-15.0.1
4949
path: |
5050
/tmp/x86_64-linux-gnu.tar.xz
5151
/tmp/x86_64-linux-gnu.tar.xz.sha256
@@ -58,28 +58,21 @@ jobs:
5858
strategy:
5959
matrix:
6060
target: [
61-
'ia64-unknown-linux-gnu',
62-
'alpha-unknown-linux-gnu',
6361
'x86_64-unknown-linux-gnu',
6462
'i386-unknown-linux-gnu',
65-
'arm-unknown-linux-gnueabi',
6663
'arm-unknown-linux-gnueabihf',
67-
'hppa-unknown-linux-gnu',
6864
'aarch64-unknown-linux-gnu',
69-
'mips-unknown-linux-gnu',
70-
'mipsel-unknown-linux-gnu',
7165
'powerpc-unknown-linux-gnu',
72-
's390-unknown-linux-gnu',
7366
's390x-unknown-linux-gnu',
7467
'sparc-unknown-linux-gnu',
75-
'powerpc64le-unknown-linux-gnu',
76-
'mips64el-unknown-linux-gnuabi64'
68+
'powerpc64le-unknown-linux-gnu'
7769
]
7870
steps:
7971
- uses: actions/checkout@main
8072
with:
8173
submodules: true
8274
- name: Free up some space
75+
if: false
8376
run: |
8477
sudo apt purge --allow-remove-essential --auto-remove \
8578
'*apache2*' \
@@ -148,7 +141,7 @@ jobs:
148141
- name: Restore from cache
149142
uses: actions/cache@main
150143
with:
151-
key: gcc-14.2.0
144+
key: gcc-15.0.1
152145
fail-on-cache-miss: true
153146
path: |
154147
/tmp/x86_64-linux-gnu.tar.xz

0 commit comments

Comments
 (0)