support mac x86 release

This commit is contained in:
extrawurst 2024-06-02 14:20:46 +02:00
parent 23d6cbe0f2
commit 671c8416e2
3 changed files with 10 additions and 1 deletions

View File

@ -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:

View File

@ -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

View File

@ -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