-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from biojppm/fix/xcode12_fwd_decl
[fix] compile failure in older xcode versions
- Loading branch information
Showing
5 changed files
with
139 additions
and
48 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 |
---|---|---|
@@ -0,0 +1,103 @@ | ||
name: macosx | ||
|
||
defaults: | ||
#if: "!contains(github.event.head_commit.message, 'skip ci')" # SKIP | ||
run: | ||
# Use a bash shell so we can use the same syntax for environment variable | ||
# access regardless of the host operating system | ||
shell: bash -e -x {0} | ||
|
||
on: | ||
# https://git.luolix.topmunity/t/how-to-trigger-an-action-on-push-or-pull-request-but-not-both/16662 | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
env: | ||
PROJ_PFX_TARGET: c4core- | ||
PROJ_PFX_CMAKE: C4CORE_ | ||
CMAKE_FLAGS: | ||
NUM_JOBS_BUILD: # 4 | ||
|
||
|
||
# ubuntu-20.04: | ||
# # https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md | ||
# gcc: 7.5.0, 8.4.0, 9.3.0, 10.2.0 | ||
# clang: 8.0.1, 9.0.1, 10.0.0 | ||
# ubuntu-18.04: | ||
# # https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu1804-README.md | ||
# gcc: 7.5.0, 8.4.0, 9.3.0, 10.1.0 | ||
# clang: 6.0.0, 8.0.0, 9.0.0 | ||
# macos-11.0: macOS Big Sur 11.0 | ||
# # https://github.com/actions/virtual-environments/blob/main/images/macos/macos-11.0-Readme.md | ||
# Xcode 12.1 11.7 | ||
# clang/LLVM 10.0.1 | ||
# gcc-8 gcc-9 | ||
# macos-10.15: macOS Catalina 10.15 | ||
# # https://github.com/actions/virtual-environments/blob/main/images/macos/macos-10.15-Readme.md | ||
# Xcode 12.1 11.7 | ||
# clang/LLVM 11.0.0 | ||
# gcc-8 gcc-9 | ||
# windows-2019: | ||
# # https://github.com/actions/virtual-environments/blob/main/images/win/Windows2019-Readme.md | ||
# vs2019 | ||
# windows-2016: | ||
# # https://github.com/actions/virtual-environments/blob/main/images/win/Windows2016-Readme.md | ||
# vs2017 | ||
|
||
jobs: | ||
|
||
#---------------------------------------------------------------------------- | ||
xcode: | ||
name: xcode${{matrix.xcver}}/c++${{matrix.std}}/${{matrix.bt}} | ||
continue-on-error: true | ||
if: always() # https://stackoverflow.com/questions/62045967/github-actions-is-there-a-way-to-continue-on-error-while-still-getting-correct | ||
runs-on: ${{matrix.os}} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- {std: 11, cxx: xcode, xcver: 13, bt: Debug , os: macos-11, bitlinks: shared64 static64} | ||
- {std: 11, cxx: xcode, xcver: 13, bt: Release, os: macos-11, bitlinks: shared64 static64} | ||
- {std: 17, cxx: xcode, xcver: 13, bt: Debug , os: macos-11, bitlinks: shared64 static64} | ||
- {std: 17, cxx: xcode, xcver: 13, bt: Release, os: macos-11, bitlinks: shared64 static64} | ||
# | ||
- {std: 11, cxx: xcode, xcver: 12, bt: Debug , os: macos-11, bitlinks: shared64 static64} | ||
- {std: 11, cxx: xcode, xcver: 12, bt: Release, os: macos-11, bitlinks: shared64 static64} | ||
- {std: 17, cxx: xcode, xcver: 12, bt: Debug , os: macos-11, bitlinks: shared64 static64} | ||
- {std: 17, cxx: xcode, xcver: 12, bt: Release, os: macos-11, bitlinks: shared64 static64} | ||
# | ||
- {std: 11, cxx: xcode, xcver: 11, bt: Debug , os: macos-11, bitlinks: shared64 static64} | ||
- {std: 11, cxx: xcode, xcver: 11, bt: Release, os: macos-11, bitlinks: shared64 static64} | ||
- {std: 17, cxx: xcode, xcver: 11, bt: Debug , os: macos-11, bitlinks: shared64 static64} | ||
- {std: 17, cxx: xcode, xcver: 11, bt: Release, os: macos-11, bitlinks: shared64 static64} | ||
env: {STD: "${{matrix.std}}", CXX_: "${{matrix.cxx}}", BT: "${{matrix.bt}}", BITLINKS: "${{matrix.bitlinks}}", VG: "${{matrix.vg}}", SAN: "${{matrix.san}}", LINT: "${{matrix.lint}}", OS: "${{matrix.os}}"} | ||
steps: | ||
- {name: checkout, uses: actions/checkout@v2, with: {submodules: recursive}} | ||
- {name: xcode, uses: maxim-lobanov/setup-xcode@v1, with: {xcode-version: "${{matrix.xcver}}" }} | ||
- {name: install requirements, run: source .github/reqs.sh && c4_install_test_requirements $OS} | ||
- {name: show info, run: source .github/setenv.sh && c4_show_info} | ||
- name: shared64-configure--------------------------------------------------- | ||
run: source .github/setenv.sh && c4_cfg_test shared64 | ||
- {name: shared64-build, run: source .github/setenv.sh && c4_build_test shared64} | ||
- {name: shared64-run, run: source .github/setenv.sh && c4_run_test shared64} | ||
- {name: shared64-pack, run: source .github/setenv.sh && c4_package shared64} | ||
- name: static64-configure--------------------------------------------------- | ||
run: source .github/setenv.sh && c4_cfg_test static64 | ||
- {name: static64-build, run: source .github/setenv.sh && c4_build_test static64} | ||
- {name: static64-run, run: source .github/setenv.sh && c4_run_test static64} | ||
- {name: static64-pack, run: source .github/setenv.sh && c4_package static64} | ||
- name: shared32-configure--------------------------------------------------- | ||
run: source .github/setenv.sh && c4_cfg_test shared32 | ||
- {name: shared32-build, run: source .github/setenv.sh && c4_build_test shared32} | ||
- {name: shared32-run, run: source .github/setenv.sh && c4_run_test shared32} | ||
- {name: shared32-pack, run: source .github/setenv.sh && c4_package shared32} | ||
- name: static32-configure--------------------------------------------------- | ||
run: source .github/setenv.sh && c4_cfg_test static32 | ||
- {name: static32-build, run: source .github/setenv.sh && c4_build_test static32} | ||
- {name: static32-run, run: source .github/setenv.sh && c4_run_test static32} | ||
- {name: static32-pack, run: source .github/setenv.sh && c4_package static32} |
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