Skip to content

Commit

Permalink
skip this one
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimergp committed Apr 23, 2024
1 parent a587dba commit 4494701
Showing 1 changed file with 4 additions and 17 deletions.
21 changes: 4 additions & 17 deletions .github/workflows/example-13.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,11 @@ jobs:
matrix:
os: ["macos-14"]
variant:
[
"Miniforge3",
"Mambaforge",
"Miniconda",
"no-variant",
"empty-with",
"no-installer-selected",
]
["Miniforge3", "Mambaforge", "Miniconda", "no-variant", "empty-with"]
include:
# This is Intel, not Apple Silicon, but doesn't bundle Miniconda
- os: macos-13
variant: no-installer-selected
variant: empty-with
steps:
- uses: actions/checkout@v4
- uses: ./
Expand Down Expand Up @@ -66,13 +59,6 @@ jobs:
if: matrix.variant == 'empty-with'
id: setup-miniconda-empty-with
continue-on-error: true
- uses: ./
if: matrix.variant == 'no-installer-selected'
id: setup-miniconda-no-installer
with:
condarc-file: etc/example-condarc.yml
run-post: false
continue-on-error: true
- name: Conda info
shell: bash -el {0}
run: conda info
Expand All @@ -92,7 +78,8 @@ jobs:
- name: Install Python
shell: bash -el {0}
run: conda install -y python
- name: Check arm64
- name: Check architecture
if: matrix.os != 'macos-13'
shell: bash -el {0}
run: |
python -c "import platform; assert platform.machine() == 'arm64', platform.machine()"

0 comments on commit 4494701

Please sign in to comment.