Skip to content

Commit 9216e46

Browse files
committed
Fix architecture in Debian package for Aarch64
1 parent 34bad00 commit 9216e46

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os:
18-
- { image: ubuntu-24.04, asset_name_suffix: "" }
19-
- { image: ubuntu-24.04-arm, asset_name_suffix: "-aarch64" }
18+
- { image: ubuntu-24.04, asset_name_suffix: "", arch: "amd64" }
19+
- { image: ubuntu-24.04-arm, asset_name_suffix: "-aarch64", arch: "arm64" }
2020
version:
2121
- { use_patch: true, asset_name: "gcc-15-without-int128" }
2222
- { use_path: false, asset_name: "gcc-15" }
@@ -48,7 +48,7 @@ jobs:
4848
cat > install/DEBIAN/control << EOF
4949
Package: gcc-15
5050
Version: 15
51-
Architecture: amd64
51+
Architecture: ${{ matrix.os.arch }}
5252
Maintainer: Antoni Boucher <[email protected]>
5353
Description: gcc 15 for rustc_codegen_gcc CI
5454
EOF

0 commit comments

Comments
 (0)