Skip to content

Commit

Permalink
.github: fix macOS installer build
Browse files Browse the repository at this point in the history
Update the macOS version strings to versions that reflect the build
machines and allow us to compile the release builds including FS
Monitor.

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
  • Loading branch information
derrickstolee committed Oct 11, 2021
1 parent 096368e commit 5ca6516
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-git-installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ jobs:
# Enable a bit stricter compile flags
DEVELOPER: 1
# For the osx-installer build
OSX_VERSION: 10.6
OSX_VERSION: 10.15
V: 1
steps:
- name: Install git dependencies
Expand Down Expand Up @@ -366,13 +366,13 @@ jobs:
PATH=/usr/local/bin:/System/Library/Frameworks:$PATH \
make -C git_osx_installer \
OSX_VERSION=10.6 C_INCLUDE_PATH="$C_INCLUDE_PATH" V=1 \
build/intel-universal-snow-leopard/git-$VERSION/osx-built-keychain ||
OSX_VERSION=10.15 C_INCLUDE_PATH="$C_INCLUDE_PATH" V=1 \
build/intel-x86_64-catalina/git-$VERSION/osx-built-keychain ||
die "Build failed"
PATH=/usr/local/bin:$PATH \
make -C git_osx_installer \
OSX_VERSION=10.6 C_INCLUDE_PATH="$C_INCLUDE_PATH" V=1 image ||
OSX_VERSION=10.15 C_INCLUDE_PATH="$C_INCLUDE_PATH" V=1 image ||
die "Build failed"
mkdir -p artifacts
Expand Down

0 comments on commit 5ca6516

Please sign in to comment.