-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into installer-x86-vc-fix-01
- Loading branch information
Showing
32 changed files
with
1,790 additions
and
1,421 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,12 +21,24 @@ on: | |
jobs: | ||
# This workflow contains a single job called "build" | ||
osx_build: | ||
# The type of runner that the job will run on | ||
runs-on: macos-latest | ||
# The type of runner that the job will run on, macos-13 is x86_64 | ||
runs-on: ${{ matrix.distro }} | ||
if: ${{ !contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]') }} | ||
|
||
strategy: | ||
fail-fast: true | ||
matrix: | ||
distro: | ||
- 'macos-13' | ||
- 'macos-14' | ||
include: | ||
- distro: 'macos-13' | ||
pre: 'x86_64' | ||
- distro: 'macos-14' | ||
pre: 'arm64' | ||
env: | ||
GEODA_VER: '1.22.0' | ||
GEODA_ARCH: ${{ matrix.pre }} | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
|
||
|
@@ -42,40 +54,53 @@ jobs: | |
p12-file-base64: ${{ secrets.MACOS_CERTIFICATE }} | ||
p12-password: ${{ secrets.MACOS_CERTIFICATE_PWD }} | ||
|
||
- name: Setup Brew | ||
- name: Install GDAL using Brew x86_64 | ||
if: ${{ matrix.pre == 'x86_64' }} | ||
run: | | ||
brew install [email protected] | ||
ln -s /usr/local/opt/[email protected] /usr/local/opt/boost | ||
rm /usr/local/bin/2to3 || true | ||
rm /usr/local/bin/idle3 || true | ||
rm /usr/local/bin/pydoc3 || true | ||
rm /usr/local/bin/python3 || true | ||
rm /usr/local/bin/python3-config || true | ||
brew install --force --overwrite --quiet gdal || true | ||
- name: Install GDAL using Brew Arm64 | ||
if: ${{ matrix.pre == 'arm64' }} | ||
run: | | ||
arch | ||
brew install gdal | ||
sudo ln -s /opt/homebrew/opt/gdal /usr/local/opt/gdal | ||
sudo ln -s /opt/homebrew/opt/proj /usr/local/opt/proj | ||
- uses: actions/cache@v3 | ||
id: cache | ||
with: | ||
path: | | ||
BuildTools/macosx/libraries | ||
BuildTools/macosx/temp | ||
key: ${{ runner.os }}-deps-cache-${{ hashFiles('BuildTools/macosx/install.sh') }} | ||
key: ${{ runner.os }}-${{ matrix.pre }}-deps-cache-${{ hashFiles('BuildTools/macosx/install.sh') }} | ||
|
||
- if: steps.cache.outputs.cache-hit != 'true' | ||
name: Build Dependencies | ||
run: | | ||
cd BuildTools/macosx | ||
export GEODA_HOME=$PWD | ||
export GEODA_ARCH=x86_64 | ||
export GEODA_ARCH=${{ env.GEODA_ARCH }} | ||
./install.sh | ||
- name: Build GeoDa | ||
run: | | ||
mkdir -p o | ||
cd BuildTools/macosx | ||
export GEODA_HOME=$PWD | ||
export GEODA_ARCH=${{ env.GEODA_ARCH }} | ||
cp ../../GeoDamake.macosx.opt ../../GeoDamake.opt | ||
echo "find identity" | ||
security find-identity -v | ||
VER_MAJOR=$(grep version_major $GEODA_HOME/../../version.h | sed -e 's/^[[:space:]][[:alpha:]|[:space:]|_|=]*//g' | sed -e 's/;//g') | ||
VER_MINOR=$(grep version_minor $GEODA_HOME/../../version.h | sed -e 's/^[[:space:]][[:alpha:]|[:space:]|_|=]*//g' | sed -e 's/;//g') | ||
VER_BUILD=$(grep version_build $GEODA_HOME/../../version.h | sed -e 's/^[[:space:]][[:alpha:]|[:space:]|_|=]*//g' | sed -e 's/;//g') | ||
GEODA_VERSION=$VER_MAJOR.$VER_MINOR.$VER_BUILD | ||
GEODA_VERSION=$VER_MAJOR.$VER_MINOR.$VER_BUILD-$GEODA_ARCH | ||
echo $GEODA_VERSION | ||
make -j$(sysctl -n hw.ncpu) | ||
make app | ||
|
@@ -86,5 +111,5 @@ jobs: | |
# Upload artifact | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: GeoDa-${{ env.GEODA_VER }}-MacOS | ||
path: ${{ github.workspace }}/BuildTools/macosx/create-dmg/GeoDa${{ env.GEODA_VER }}-Installer.dmg | ||
name: GeoDa-${{ env.GEODA_VER }}-${{ env.GEODA_ARCH }}-MacOS | ||
path: ${{ github.workspace }}/BuildTools/macosx/create-dmg/GeoDa${{ env.GEODA_VER }}-${{ env.GEODA_ARCH }}-Installer.dmg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.