[ci] Fix designated initializer issue with gcc #1707
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: macOS build | |
on: push | |
jobs: | |
brew: | |
name: macOS (Release, Brew, Intel) | |
runs-on: macos-13 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Dependencies | |
run: | | |
./ci/osx-brew.deps.sh | |
- name: Build | |
run: | | |
./ci/osx-brew.build.sh | |
brew-m1: | |
# Disabled until we manage to set-up proper macOS VMs to not pollute host with homebrew | |
if: false | |
name: macOS (Release, Brew, AppleSilicon) | |
runs-on: macmini-arm64 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Dependencies | |
run: | | |
./ci/osx-brew.deps.sh | |
- name: Build | |
run: | | |
./ci/osx-brew.build.sh | |
brew-m1-dev: | |
# Disabled until we manage to set-up proper macOS VMs to not pollute host with homebrew | |
if: false | |
name: macOS (Dev, Brew, AppleSilicon) | |
runs-on: macmini-arm64 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Dependencies | |
run: | | |
./ci/osx-brew.deps.sh | |
- name: Build | |
run: | | |
./ci/developer.build.sh -S "$PWD" -B build-developer | |
m1-package: | |
name: macOS (AppleSilicon Release) | |
runs-on: macmini-arm64 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- run: | | |
source ci/common.deps.sh | |
- run: | | |
source ci/osx-package.build.sh | |
env: | |
MACOS_ARCH: "aarch64" | |
- run: | | |
export GITTAGNOV=$(echo "$GITHUB_REF" | sed "s/.*\///;s/^v//") | |
export BUILD_ARTIFACTSTAGINGDIRECTORY=$PWD/staging | |
mkdir $BUILD_ARTIFACTSTAGINGDIRECTORY | |
source ci/osx-package.deploy.sh | |
env: | |
MACOS_ARCH: "aarch64" | |
MAC_ALTOOL_PASSWORD: ${{ secrets.MAC_ALTOOL_PASSWORD }} | |
- name: Upload build | |
uses: actions/upload-artifact@v2 | |
with: | |
name: macos-aarch64 | |
path: | | |
staging/*.* |