Skip to content

Commit

Permalink
The GitHub workflow to build and upload conda packages was modified: …
Browse files Browse the repository at this point in the history
…Mamba was disabled
  • Loading branch information
dprada committed Feb 6, 2023
1 parent 646214f commit b9eb905
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_and_upload_conda_packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
environment-file: devtools/conda-envs/build_env.yaml # Path to the build conda environment
mamba-version: "*"
use-mamba: false
#mamba-version: "*"
#use-mamba: false
auto-update-conda: false
auto-activate-base: false
show-channel-urls: true
Expand Down
13 changes: 8 additions & 5 deletions .github/workflows/sphinx_docs_to_gh_pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,24 @@ jobs:
run: |
uname -a
- name: Setup GNU Fortran
uses: modflowpy/install-gfortran-action@v1 # https://github.com/modflowpy/install-gfortran-action

- name: Make conda environment
uses: conda-incubator/setup-miniconda@v2 # https://github.com/conda-incubator/setup-miniconda
with:
python-version: 3.9
environment-file: devtools/conda-envs/docs_env.yaml
mamba-version: "*"
use-mamba: true
#mamba-version: "*"
#use-mamba: true
auto-update-conda: false
auto-activate-base: false
show-channel-urls: true
activate-environment: test

- name: Checking gfortran version
run: |
gfortran --version
#- name: Checking gfortran version
# run: |
# gfortran --version

- name: Install package
# conda setup requires this special shell
Expand Down

0 comments on commit b9eb905

Please sign in to comment.