From ab65b89093c1cf6dd440a4ab8a1be7e76f55d955 Mon Sep 17 00:00:00 2001 From: jpfleischer Date: Sat, 19 Oct 2024 01:27:27 -0400 Subject: [PATCH] Undo arm ubuntu runner. It is paid only. --- .github/workflows/osx-ubuntu-manual-install.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/osx-ubuntu-manual-install.yml b/.github/workflows/osx-ubuntu-manual-install.yml index 2710867bf..6a5592cdb 100644 --- a/.github/workflows/osx-ubuntu-manual-install.yml +++ b/.github/workflows/osx-ubuntu-manual-install.yml @@ -23,37 +23,34 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-22.04-arm64, ubuntu-latest, macos-latest] # Use ubuntu-22.04-arm64 runner + os: [ubuntu-latest, macos-latest] include: - os: macos-latest PLATFORM: MacOSX-x86_64 - os: ubuntu-latest PLATFORM: Linux-x86_64 - - os: ubuntu-22.04-arm64 - PLATFORM: Linux-arm64 # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 - - name: Check platform and architecture + - name: check my platform shell: bash -l {0} run: | uname -a uname -m - echo "Architecture: ${{ matrix.architecture }}" - name: Install miniconda shell: bash -l {0} run: | source setup/setup_conda.sh ${{ matrix.PLATFORM }} - - name: Check if the environment is set up properly + - name: Check whether the environment is setup properly shell: bash -l {0} run: | source setup/activate_conda.sh - if [ ${{ matrix.PLATFORM }} == "Linux-x86_64" ] || [ ${{ matrix.PLATFORM }} == "Linux-arm64" ]; then + if [ ${{ matrix.PLATFORM }} == "Linux-x86_64" ]; then echo "Linux install, going to check conda path" which conda else