Merge branch 'master' into release #47
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
name: Build Basilisk MacOS | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- release | |
jobs: | |
build-basilisk: | |
name: Build Basilisk MacOS - ${{ matrix.config.name }} | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- name: intel64 | |
arch: intel64 | |
compiler-arch: x86_64 | |
- name: arm64 | |
arch: arm64 | |
compiler-arch: aarch64 | |
steps: | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: 15.3.0 | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup MacOS 11.3 SDK | |
run: | | |
mkdir -p /Applications/Xcode_15.3.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs | |
wget https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX11.3.sdk.tar.xz -P /Applications/Xcode_15.3.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs | |
tar xf /Applications/Xcode_15.3.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.3.sdk.tar.xz -C /Applications/Xcode_15.3.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs | |
rm -rf /Applications/Xcode_15.3.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.3.sdk.tar.xz | |
- name: Install Dependencies | |
run: | | |
brew install yasm pyenv | |
# Setup Python 2 with pyenv | |
pyenv install 2.7.18 | |
pyenv global 2.7.18 | |
- name: Copy mozconfig | |
run: cp mozconfigs/macos/${{ matrix.config.arch }}/macos-${{ matrix.config.arch }}-mozconfig .mozconfig | |
- name: Build Basilisk | |
run: | | |
# Use Python 2 we installed earler | |
export PATH="$(pyenv root)/shims:${PATH}" | |
./mach configure | |
./mach build | |
./mach package | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: basilisk-macos-${{ matrix.config.arch }} | |
path: | | |
obj-${{ matrix.config.compiler-arch }}-apple-darwin/dist/*.app | |
obj-${{ matrix.config.compiler-arch }}-apple-darwin/dist/basilisk-* |