Not ready to attempt cross-platform builds yet.

This commit is contained in:
Ryan Volz 2021-05-21 19:22:28 -04:00
parent 951533acc8
commit ac90179779

View File

@ -26,22 +26,22 @@ jobs:
PLATFORM: linux-64 PLATFORM: linux-64
OS_NAME: Linux OS_NAME: Linux
ARCH: x86_64 ARCH: x86_64
- os: ubuntu-latest # - os: ubuntu-latest
PLATFORM: linux-aarch64 # PLATFORM: linux-aarch64
OS_NAME: Linux # OS_NAME: Linux
ARCH: aarch64 # ARCH: aarch64
- os: ubuntu-latest # - os: ubuntu-latest
PLATFORM: linux-ppc64le # PLATFORM: linux-ppc64le
OS_NAME: Linux # OS_NAME: Linux
ARCH: ppc64le # ARCH: ppc64le
- os: macos-latest - os: macos-latest
PLATFORM: osx-64 PLATFORM: osx-64
OS_NAME: MacOSX OS_NAME: MacOSX
ARCH: x86_64 ARCH: x86_64
- os: macos-latest # - os: macos-latest
PLATFORM: osx-arm64 # PLATFORM: osx-arm64
OS_NAME: MacOSX # OS_NAME: MacOSX
ARCH: arm64 # ARCH: arm64
- os: windows-latest - os: windows-latest
PLATFORM: win-64 PLATFORM: win-64
OS_NAME: Windows OS_NAME: Windows
@ -66,12 +66,10 @@ jobs:
PLATFORM: ${{ matrix.PLATFORM }} PLATFORM: ${{ matrix.PLATFORM }}
OS_NAME: ${{ matrix.OS_NAME }} OS_NAME: ${{ matrix.OS_NAME }}
run: | run: |
# update to a micromamba-compatible conda constructor
pip install git+git://github.com/wolfv/constructor@69eaa20b12ea1020438f645ec834f47ac9d3c3a7#egg=constructor --force --no-deps
if [ "$OS_NAME" == "Windows" ]; then if [ "$OS_NAME" == "Windows" ]; then
PATH=$CONDA_PREFIX/NSIS:$PATH PATH=$CONDA_PREFIX/NSIS:$PATH
fi fi
python build_installer.py -- -v --conda-exe $MAMBA_EXE python build_installer.py -- -v
- name: Build metapackage - name: Build metapackage
shell: bash -l {0} shell: bash -l {0}