Skip to content

Commit

Permalink
Merge pull request #26 from saraedum/ci-conda
Browse files Browse the repository at this point in the history
Adapt CI to changes in conda setup on GitHub
  • Loading branch information
saraedum authored Jan 14, 2023
2 parents 5fa70f2 + 15b701d commit 85c52c3
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
submodules: recursive
fetch-depth: 0
- uses: conda-incubator/setup-miniconda@v2
with: { mamba-version: "*", channels: "conda-forge", channel-priority: true }
with: { miniforge-variant: "Mambaforge", miniforge-version: "latest" }
- name: Install dependencies
shell: bash -l {0}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
with: { submodules: recursive, fetch-depth: 0 }
- uses: conda-incubator/setup-miniconda@v2
with: { mamba-version: "*", channels: "conda-forge", channel-priority: true }
with: { miniforge-variant: "Mambaforge", miniforge-version: "latest" }
- name: install dependencies
shell: bash -l {0}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
with: { submodules: recursive }
- uses: conda-incubator/setup-miniconda@v2
with: { mamba-version: "*", channels: "conda-forge", channel-priority: true, python-version: "3.9" }
with: { miniforge-variant: "Mambaforge", miniforge-version: "latest", python-version: "3.9" }
- name: install dependencies
shell: bash -l {0}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v2
with: { submodules: recursive }
- uses: conda-incubator/setup-miniconda@v2
with: { mamba-version: "*", channels: "conda-forge", channel-priority: true }
with: { miniforge-variant: "Mambaforge", miniforge-version: "latest" }
- name: install dependencies
shell: bash -l {0}
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: sudo apt install libc6-dbg valgrind
if: ${{ matrix.target == 'check-valgrind' }}
- uses: conda-incubator/setup-miniconda@v2
with: { mamba-version: "*", channels: "conda-forge", channel-priority: true }
with: { miniforge-variant: "Mambaforge", miniforge-version: "latest" }
- name: install dependencies
shell: bash -l {0}
run: |
Expand All @@ -45,7 +45,7 @@ jobs:
- uses: actions/checkout@v2
with: { submodules: recursive }
- uses: conda-incubator/setup-miniconda@v2
with: { mamba-version: "*", channels: "conda-forge", channel-priority: true }
with: { miniforge-variant: "Mambaforge", miniforge-version: "latest" }
- name: install dependencies
shell: bash -l {0}
run: |
Expand Down
3 changes: 3 additions & 0 deletions doc/news/ci.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
**Fixed:**

* Adapted CI setup on GitHub to changes in setup-miniconda.

0 comments on commit 85c52c3

Please sign in to comment.