Skip to content

Add job for running obs_lsst tests in CI #523

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
28 changes: 28 additions & 0 deletions etc/scipipe/obs_lsst.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
#
# *_timelimit is in minutes
#
# The template dict/map/hash MUST NOT be used directly -- it exists ONLY to
# provide yaml anchors internal to this file.
#
template:
datasets:
test_obs_lsst: &test_obs_lsst
display_name: testdata_obs_lsst
name: CI-obsLSST
github_repo: lsst-dm/testdata_obs_lsst
git_ref: master
clone_timelimit: 15
codes:
obs_lsst: &code_obs_lsst
name: obs_lsst
github_repo: lsst/obs_lsst
git_ref: master
clone_timelimit: 5
obs_lsst:
defaults:
retries: 3
configs:
- dataset:
<<: *test_obs_lsst
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A code: key will be needed until obs_lsst is part of the docker images.

run_timelimit: 150
11 changes: 11 additions & 0 deletions jobs/obs_lsst.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import util.Plumber

def p = new Plumber(name: 'scipipe/obs_lsst', dsl: this)
p.pipeline().with {
description('Execute CI tests for obs_lsst.')

parameters {
stringParam('DOCKER_IMAGE', null, 'Explicit name of release docker image including tag.')
booleanParam('WIPEOUT', false, 'Completely wipe out workspace(s) before starting build.')
}
}
Loading