Skip to content

Commit

Permalink
CI: Need to setup miniconda for macOS-14 (#8463)
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman authored Apr 27, 2024
1 parent 7845f5e commit 8745e7b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:
defaults:
run:
# default to use bash shell
shell: bash
shell: bash -el {0}

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down Expand Up @@ -73,6 +73,10 @@ jobs:
path: C:\vcpkg\installed\
if: runner.os == 'Windows'

- name: Setup conda
uses: conda-incubator/setup-miniconda@v3
if: runner.os == 'macOS'

- name: Install GMT dependencies
run: |
# $RUNNER_OS can be Linux, macOS or Windows
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
defaults:
run:
# default to use bash shell
shell: bash
shell: bash -el {0}

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down Expand Up @@ -67,6 +67,10 @@ jobs:
path: C:\vcpkg\installed\
if: runner.os == 'Windows'

- name: Setup conda
uses: conda-incubator/setup-miniconda@v3
if: runner.os == 'macOS'

- name: Install GMT dependencies
run: |
# $RUNNER_OS can be Linux, macOS or Windows
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:
defaults:
run:
# default to use bash shell
shell: bash
shell: bash -el {0}

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down Expand Up @@ -70,6 +70,10 @@ jobs:
path: C:\vcpkg\installed\
if: runner.os == 'Windows'

- name: Setup conda
uses: conda-incubator/setup-miniconda@v3
if: runner.os == 'macOS'

- name: Install GMT dependencies
run: |
# $RUNNER_OS can be Linux, macOS or Windows
Expand Down

0 comments on commit 8745e7b

Please sign in to comment.