Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/ci_tests_dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ jobs:

# Pull baseline image data from dvc remote (DAGsHub)
- name: Pull baseline image data from dvc remote
if: github.event_name == 'schedule'
run: |
ORIGINAL_BRANCH=$(git branch --show-current)
# Pull down GMT 6.4 baseline images from the gmt-6.4 branch
Comment thread
seisman marked this conversation as resolved.
Expand All @@ -114,6 +115,13 @@ jobs:
ls -lhR pygmt/tests/baseline/
git checkout ${ORIGINAL_BRANCH}

# Pull baseline image data from dvc remote (DAGsHub)
- name: Pull baseline image data from dvc remote
if: github.event_name != 'schedule'
run: |
dvc pull
ls -lhR pygmt/tests/baseline/

# Build and install latest GMT from GitHub
- name: Install GMT ${{ matrix.gmt_git_ref }} branch (Linux/macOS)
run: curl https://raw.githubusercontent.com/GenericMappingTools/gmt/master/ci/build-gmt.sh | bash
Expand Down