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
OS_NAME: Linux
ARCH: x86_64
- os: ubuntu-latest
PLATFORM: linux-aarch64
OS_NAME: Linux
ARCH: aarch64
- os: ubuntu-latest
PLATFORM: linux-ppc64le
OS_NAME: Linux
ARCH: ppc64le
# - os: ubuntu-latest
# PLATFORM: linux-aarch64
# OS_NAME: Linux
# ARCH: aarch64
# - os: ubuntu-latest
# PLATFORM: linux-ppc64le
# OS_NAME: Linux
# ARCH: ppc64le
- os: macos-latest
PLATFORM: osx-64
OS_NAME: MacOSX
ARCH: x86_64
- os: macos-latest
PLATFORM: osx-arm64
OS_NAME: MacOSX
ARCH: arm64
# - os: macos-latest
# PLATFORM: osx-arm64
# OS_NAME: MacOSX
# ARCH: arm64
- os: windows-latest
PLATFORM: win-64
OS_NAME: Windows
@ -66,12 +66,10 @@ jobs:
PLATFORM: ${{ matrix.PLATFORM }}
OS_NAME: ${{ matrix.OS_NAME }}
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
PATH=$CONDA_PREFIX/NSIS:$PATH
fi
python build_installer.py -- -v --conda-exe $MAMBA_EXE
python build_installer.py -- -v
- name: Build metapackage
shell: bash -l {0}