Skip to content

Commit

Permalink
Undo arm ubuntu runner. It is paid only.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpfleischer committed Oct 19, 2024
1 parent f1bbd2c commit ab65b89
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/osx-ubuntu-manual-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ab65b89

Please sign in to comment.