We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34bad00 commit 9216e46Copy full SHA for 9216e46
.github/workflows/main.yml
@@ -15,8 +15,8 @@ jobs:
15
fail-fast: false
16
matrix:
17
os:
18
- - { image: ubuntu-24.04, asset_name_suffix: "" }
19
- - { image: ubuntu-24.04-arm, asset_name_suffix: "-aarch64" }
+ - { image: ubuntu-24.04, asset_name_suffix: "", arch: "amd64" }
+ - { image: ubuntu-24.04-arm, asset_name_suffix: "-aarch64", arch: "arm64" }
20
version:
21
- { use_patch: true, asset_name: "gcc-15-without-int128" }
22
- { use_path: false, asset_name: "gcc-15" }
@@ -48,7 +48,7 @@ jobs:
48
cat > install/DEBIAN/control << EOF
49
Package: gcc-15
50
Version: 15
51
- Architecture: amd64
+ Architecture: ${{ matrix.os.arch }}
52
Maintainer: Antoni Boucher <[email protected]>
53
Description: gcc 15 for rustc_codegen_gcc CI
54
EOF
0 commit comments