Skip to content

Commit 5a1d322

Browse files
authored
Merge pull request #105 from Homebrew/1.1.1-staging
Fix issues with aarch64 GCC
2 parents b6c2144 + a2414a1 commit 5a1d322

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

.github/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
changelog:
2+
exclude:
3+
authors:
4+
- dependabot
5+
- BrewTestBot

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ on:
88
- Dockerfile*
99
workflow_call:
1010

11+
permissions:
12+
contents: read
13+
1114
jobs:
1215
build:
1316
strategy:

.github/workflows/release.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
description: Version to use for release tag
88
required: true
99

10+
permissions: {}
11+
1012
jobs:
1113
build:
1214
uses: ./.github/workflows/build.yml
@@ -16,9 +18,6 @@ jobs:
1618
runs-on: ubuntu-latest
1719
permissions:
1820
contents: write
19-
env:
20-
GH_TOKEN: ${{github.token}}
21-
TAG: ${{github.event.inputs.tag}}
2221
steps:
2322
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2423
with:
@@ -31,8 +30,8 @@ jobs:
3130
path: bootstrap-binaries
3231
merge-multiple: true
3332

34-
- name: Push tag
35-
run: gh release create "$TAG" --generate-notes
36-
37-
- name: Upload to GitHub Releases
38-
run: gh release upload "$TAG" bootstrap-binaries/*.tar.gz
33+
- name: Create release
34+
run: gh release create "$TAG" --generate-notes bootstrap-binaries/*.tar.gz
35+
env:
36+
GH_TOKEN: ${{github.token}}
37+
TAG: ${{github.event.inputs.tag}}

build-gcc.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ cd build
3838
--disable-libvtv \
3939
--disable-threads \
4040
--disable-multilib \
41+
--enable-multiarch \
42+
--enable-standard-branch-protection \
4143
--with-newlib \
4244
--without-headers
4345
make

0 commit comments

Comments
 (0)