conda_cron #624
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "conda_cron" | |
on: | |
# Allow for manual trigger of workflow | |
workflow_dispatch: | |
schedule: | |
# At 07:00 UTC every day | |
- cron: "0 7 * * *" | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash -l {0} | |
jobs: | |
condacheck: | |
runs-on: ${{ matrix.OS }} | |
name: "daily conda check" | |
strategy: | |
fail-fast: false | |
matrix: | |
# Note: pinned to macos-12 | |
# see https://github.com/OpenFreeEnergy/openfe/issues/842 | |
os: ['ubuntu-latest', 'macos-12'] | |
python-version: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
steps: | |
- name: setup micromamba | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-name: gufe | |
cache-environment: true | |
cache-downloads: true | |
create-args: >- | |
python=${{ matrix.python-version }} | |
pip | |
condarc: | | |
channels: | |
- jaimergp/label/unsupported-cudatoolkit-shim | |
- conda-forge | |
init-shell: bash | |
- name: install gufe and deps | |
run: | | |
micromamba install gufe pytest pytest-xdist pip -c conda-forge | |
python -m pip install PyGithub | |
- id: run-tests | |
name: run tests | |
continue-on-error: true | |
run: pytest -n auto --pyargs gufe | |
- uses: actions/checkout@v4 | |
- name: raise-or-close-issue | |
env: | |
CI_OUTCOME: ${{ steps.run-tests.outcome }} | |
TITLE: "[CI] CONDA CRON FAILURE ${{ matrix.os }} python ${{ matrix.python-version }}" | |
GITHUB_TOKEN: ${{ github.token }} | |
run: python devtools/raise-or-close-issue.py |