From 011fc82887ea4ed967835e4f5c74f48a637d3f54 Mon Sep 17 00:00:00 2001 From: Ryan Volz Date: Mon, 26 Sep 2022 18:47:59 -0400 Subject: [PATCH] Enable CI builds for cross-built installers. (Testing will still fail). --- .github/workflows/build_radioconda.yml | 28 +++++++++++++------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/build_radioconda.yml b/.github/workflows/build_radioconda.yml index 76636ce..780e653 100644 --- a/.github/workflows/build_radioconda.yml +++ b/.github/workflows/build_radioconda.yml @@ -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 @@ -69,14 +69,14 @@ jobs: if [ "$OS_NAME" == "Windows" ]; then PATH=$CONDA_PREFIX/NSIS:$PATH fi - python build_installer.py -- -v + python build_installer.py installer_specs/$DISTNAME-$PLATFORM -- -v - name: Build metapackage shell: bash -l {0} env: PLATFORM: ${{ matrix.PLATFORM }} run: | - python build_metapackage.py + python build_metapackage.py installer_specs/$DISTNAME-$PLATFORM.yml - name: Copy lock file and list built installers and packages shell: bash