Skip to content

Commit

Permalink
Updating workflow scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
shz9 committed Apr 5, 2024
1 parent 27fcbc6 commit fe07e22
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ jobs:
restore-keys: |
mkdocs-material-
- run: python -m pip install -r requirements-docs.txt
- run: python -m pip install -v -e .[docs]
- run: mkdocs gh-deploy --force
7 changes: 6 additions & 1 deletion .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ jobs:
shell: "bash -l {0}"
run: >
conda create --name "viprs_ci" -c conda-forge -c anaconda
python=${{matrix.python-version}} pip wheel compilers openblas -y
python=${{matrix.python-version}} pip wheel c-compiler cxx-compiler openblas -y
- name: Show info about `viprs_ci` environment
shell: "bash -l {0}"
run: |
conda list --show-channel-urls -n viprs_ci
- name: Install viprs
shell: "bash -l {0}"
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci-osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ jobs:
conda create --name "viprs_ci" -c conda-forge -c anaconda
python=${{matrix.python-version}} pip wheel compilers openblas -y
- name: Show info about `viprs_ci` environment
shell: "bash -l {0}"
run: |
conda list --show-channel-urls -n viprs_ci
- name: Install viprs
shell: "bash -l {0}"
run: |
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ jobs:
shell: "bash -l {0}"
run: >
conda create --name "viprs_ci" -c conda-forge -c anaconda
python=${{matrix.python-version}} pip wheel compilers openblas -y
python=${{matrix.python-version}} pip wheel c-compiler cxx-compiler openblas -y
- name: Show info about `viprs_ci` environment
shell: "bash -l {0}"
run: |
conda list --show-channel-urls -n viprs_ci
- name: Install viprs
shell: "bash -l {0}"
Expand Down

0 comments on commit fe07e22

Please sign in to comment.