Skip to content

Commit

Permalink
Merge pull request #114 from trident-project/weeklymaster
Browse files Browse the repository at this point in the history
Sync circleci config with legacy
  • Loading branch information
brittonsmith committed Jan 31, 2020
2 parents fc3755e + d259180 commit 7e0ccb1
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ commands:
pip install Cython numpy
if [ << parameters.yttag >> != "None" ]; then
if [ ! -f $YT_DIR/README.md ]; then
git clone --branch=yt-4.0 https://github.com/yt-project/yt $YT_DIR
git clone --branch=${YT_HEAD} https://github.com/yt-project/yt $YT_DIR
fi
pushd $YT_DIR
# return to yt tip before pulling
Expand Down Expand Up @@ -284,3 +284,22 @@ workflows:
- docs-test:
name: "Test docs build"
tag: "3.8.1"

weekly:
triggers:
- schedule:
cron: "0 0 * * 1"
filters:
branches:
only:
- legacy
jobs:
- tests:
name: "Python 3.8 tests with yt tip"
tag: "3.8.1"
yttag: "YT_HEAD"
coverage: 0

- docs-test:
name: "Test docs build"
tag: "3.8.1"

0 comments on commit 7e0ccb1

Please sign in to comment.