Skip to content

Commit 671c841

Browse files
committed
support mac x86 release
1 parent 23d6cbe commit 671c841

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.github/workflows/cd.yml

+7
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,13 @@ jobs:
7474
env:
7575
GITUI_RELEASE: 1
7676
run: make release-mac
77+
- name: Build Release Mac x86
78+
if: matrix.os == 'macos-latest'
79+
env:
80+
GITUI_RELEASE: 1
81+
run: |
82+
rustup target add x86_64-apple-darwin
83+
make release-mac-x86
7784
- name: Build Release Linux
7885
if: matrix.os == 'ubuntu-latest'
7986
env:

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ but this also allows us now to define colors in the common hex format:
2424
Checkout [THEMES.md](./THEMES.md) for more info.
2525

2626
### Added
27+
* support intel x86 apple build in nightlies and releases
2728
* support `BUILD_GIT_COMMIT_ID` enabling builds from `git archive` generated source tarballs or other outside a git repo [[@alerque](https://github.com/alerque)] ([#2187](https://github.com/extrawurst/gitui/pull/2187))
2829

2930
### Fixes

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,8 @@ All contain a single binary file
204204

205205
#### macOS
206206

207-
- gitui-mac.tar.gz (intel Mac, uses Rosetta on Apple silicon, single binary)
207+
- gitui-mac.tar.gz (arm64)
208+
- gitui-mac-x86.tar.gz (intel x86)
208209

209210
#### Windows
210211

0 commit comments

Comments
 (0)