Skip to content

Commit

Permalink
support mac x86 release
Browse files Browse the repository at this point in the history
  • Loading branch information
extrawurst committed Jun 2, 2024
1 parent 23d6cbe commit 671c841
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,13 @@ jobs:
env:
GITUI_RELEASE: 1
run: make release-mac
- name: Build Release Mac x86
if: matrix.os == 'macos-latest'
env:
GITUI_RELEASE: 1
run: |
rustup target add x86_64-apple-darwin
make release-mac-x86
- name: Build Release Linux
if: matrix.os == 'ubuntu-latest'
env:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ but this also allows us now to define colors in the common hex format:
Checkout [THEMES.md](./THEMES.md) for more info.

### Added
* support intel x86 apple build in nightlies and releases
* 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))

### Fixes
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,8 @@ All contain a single binary file

#### macOS

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

#### Windows

Expand Down

0 comments on commit 671c841

Please sign in to comment.