mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-23 14:06:26 +00:00
separate osx-x86 and osx-arm64 for the conda daily builds (#6694)
* separate osx-x86 and osx-arm64 for the conda daily builds * remove running this in PR. No need.
This commit is contained in:
committed by
GitHub
parent
eaf67d83f9
commit
7b80803cbe
@@ -54,7 +54,8 @@ jobs:
|
|||||||
platform: [
|
platform: [
|
||||||
{ name: win, distver: windows-latest, pkg_dir: 'win-64' },
|
{ name: win, distver: windows-latest, pkg_dir: 'win-64' },
|
||||||
{ name: linux, distver: ubuntu-latest, pkg_dir: 'linux-64' },
|
{ name: linux, distver: ubuntu-latest, pkg_dir: 'linux-64' },
|
||||||
{ name: macOS, distver: macos-latest, pkg_dir: 'osx-64' }
|
{ name: macOS-arm, distver: macos-latest, pkg_dir: 'osx-arm64' }
|
||||||
|
{ name: macOS-x86, distver: macos-13, pkg_dir: 'osx-64' }
|
||||||
]
|
]
|
||||||
steps:
|
steps:
|
||||||
- name: Set up swap space
|
- name: Set up swap space
|
||||||
@@ -68,7 +69,7 @@ jobs:
|
|||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
|
||||||
- name: Download and extract MacOSX SDK
|
- name: Download and extract MacOSX SDK
|
||||||
if: ${{ runner.os == 'macOS' }}
|
if: ${{ matrix.platform.name == 'macOS-x86' }}
|
||||||
run: |
|
run: |
|
||||||
curl -L https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX10.13.sdk.tar.xz | tar -xvJf - -C /Users/runner/work/
|
curl -L https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX10.13.sdk.tar.xz | tar -xvJf - -C /Users/runner/work/
|
||||||
|
|
||||||
|
|||||||
@@ -20,8 +20,9 @@ cxx_compiler_version:
|
|||||||
- '12' # [linux]
|
- '12' # [linux]
|
||||||
- '16' # [osx]
|
- '16' # [osx]
|
||||||
c_stdlib_version:
|
c_stdlib_version:
|
||||||
- '2.12' # [linux]
|
- 2.17 # [linux]
|
||||||
- '10.13' # [osx]
|
- 10.13 # [osx and x86_64]
|
||||||
|
- 11.0 # [osx and arm64]
|
||||||
hdf5:
|
hdf5:
|
||||||
- 1.14.6
|
- 1.14.6
|
||||||
libboost_devel:
|
libboost_devel:
|
||||||
@@ -43,12 +44,12 @@ target_platform:
|
|||||||
- win-64 # [win]
|
- win-64 # [win]
|
||||||
- linux-64 # [linux]
|
- linux-64 # [linux]
|
||||||
- osx-64 # [osx]
|
- osx-64 # [osx]
|
||||||
macos_machine:
|
macos_machine: # [osx]
|
||||||
- x86_64-apple-darwin13.4.0
|
- x86_64-apple-darwin13.4.0 # [osx and x86_64]
|
||||||
MACOSX_DEPLOYMENT_TARGET:
|
- arm64-apple-darwin20.0.0 # [osx and arm64]
|
||||||
- '10.13'
|
MACOSX_DEPLOYMENT_TARGET: # [osx]
|
||||||
MACOSX_SDK_VERSION:
|
- 11.0 # [osx and arm64]
|
||||||
- '10.13'
|
- 10.13 # [osx and x86_64]
|
||||||
|
|
||||||
CONDA_BUILD_SYSROOT:
|
CONDA_BUILD_SYSROOT: # [osx]
|
||||||
- "/Users/runner/work/MacOSX10.13.sdk" # [osx]
|
- "/Users/runner/work/MacOSX10.13.sdk" # [osx and x86_64]
|
||||||
Reference in New Issue
Block a user