Skip to content

Commit

Permalink
Updates for Conda weekly CI (#3150)
Browse files Browse the repository at this point in the history
* Update conda test for macos

* Disable path change

* Remove path

* Add conda path

* Simplification

* Automatic 'yes' for conda update
  • Loading branch information
garth-wells authored Apr 21, 2024
1 parent 0decb9f commit 8cb4bb1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@ on:

jobs:
conda-install:
name: Conda install and test
name: Install and test
strategy:
matrix:
os: [ubuntu-22.04, macos-13, macos-14]
os: [ubuntu-latest, macos-13, macos-14]
fail-fast: false
runs-on: ${{ matrix.os }}
timeout-minutes: 30

steps:
- name: Install conda (macos-13)
if: ${{ matrix.os == 'macos-13' }}
- name: Install conda (macOS)
if: runner.os == 'macOS'
run: |
brew install anaconda
echo "/usr/local/anaconda3/bin" >> $GITHUB_PATH
echo "/opt/homebrew/anaconda3/bin:/usr/local/anaconda3/bin" >> $GITHUB_PATH
- name: Update conda
run: |
conda update conda
conda -y update conda
- name: Install DOLFINx (py3-10)
run: |
Expand Down

0 comments on commit 8cb4bb1

Please sign in to comment.