Skip to content

Commit

Permalink
fixing the conda cron
Browse files Browse the repository at this point in the history
  • Loading branch information
IAlibay committed Nov 12, 2024
1 parent 5cdb748 commit 85fdca6
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/conda_cron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
schedule:
# At 07:00 UTC every day
- cron: "0 7 * * *"
pull_request:
branches:
- main

concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
Expand All @@ -21,13 +24,11 @@ jobs:
strategy:
fail-fast: false
matrix:
# Note: pinned to macos-12
# see https://github.com/OpenFreeEnergy/openfe/issues/842
os: ['ubuntu-latest', 'macos-12']
os: ['ubuntu-latest', 'macos-13', 'macos-14']
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"

steps:
- name: setup micromamba
Expand Down Expand Up @@ -57,9 +58,9 @@ jobs:

- 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
# - 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

0 comments on commit 85fdca6

Please sign in to comment.