Example 13: Apple Silicon #194
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Example 13: Apple Silicon" | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
branches: | |
- "develop" | |
- "main" | |
- "master" | |
schedule: | |
# Note that cronjobs run on master/main by default | |
- cron: "0 0 * * *" | |
jobs: | |
example-13: | |
# prevent cronjobs from running on forks | |
if: | |
(github.event_name == 'schedule' && github.repository == | |
'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') | |
name: Ex13 (os=${{ matrix.os }} variant=${{ matrix.variant }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["macos-14"] | |
variant: | |
["Miniforge3", "Mambaforge", "Miniconda", "no-variant", "empty-with"] | |
include: | |
# This is Intel, not Apple Silicon, but doesn't bundle Miniconda | |
- os: macos-13 | |
variant: empty-with | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
if: matrix.variant == 'Miniforge3' || matrix.variant == 'Mambaforge' | |
id: setup-miniforge | |
continue-on-error: true | |
with: | |
auto-update-conda: true | |
architecture: arm64 | |
miniforge-variant: ${{ matrix.variant }} | |
miniforge-version: latest | |
- uses: ./ | |
if: matrix.variant == 'Miniconda' | |
id: setup-miniconda | |
continue-on-error: true | |
with: | |
auto-update-conda: true | |
miniconda-version: latest | |
- uses: ./ | |
if: matrix.variant == 'no-variant' | |
id: setup-miniconda-no-variant | |
continue-on-error: true | |
with: | |
miniforge-version: latest | |
- uses: ./ | |
if: matrix.variant == 'empty-with' | |
id: setup-miniconda-empty-with | |
continue-on-error: true | |
- name: Conda info | |
shell: bash -el {0} | |
run: conda info | |
- name: Conda list | |
shell: bash -el {0} | |
run: conda list | |
- name: Environment | |
shell: bash -el {0} | |
run: printenv | sort | |
- name: Create an environment | |
shell: bash -el {0} | |
run: conda create -n unused --dry-run zlib | |
- name: Run mamba | |
if: matrix.variant == 'Miniforge3' || matrix.variant == 'Mambaforge' | |
shell: bash -el {0} | |
run: mamba --version | |
- name: Install Python | |
shell: bash -el {0} | |
run: conda install -y python | |
- name: Check architecture | |
if: matrix.os != 'macos-13' | |
shell: bash -el {0} | |
run: | | |
python -c "import platform; assert platform.machine() == 'arm64', platform.machine()" |