forked from spacetelescope/romancal
-
Notifications
You must be signed in to change notification settings - Fork 0
86 lines (83 loc) · 3.2 KB
/
tests_devdeps.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: test with development versions
on:
push:
branches:
- main
- '*x'
tags:
- '*'
pull_request:
types:
- opened
- reopened
- labeled
- unlabeled
- synchronize
schedule:
# Weekly Monday 9AM build
- cron: "0 9 * * 1"
workflow_dispatch:
inputs:
crds_context:
description: CRDS context (leave blank for latest)
type: string
required: false
default: ''
crds_server:
description: CRDS server
type: string
required: false
default: https://roman-crds.stsci.edu
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ inputs.crds_context }}
cancel-in-progress: true
jobs:
webbpsf_data_cache:
if: (github.repository == 'spacetelescope/romancal' && (github.event_name == 'schedule' || github.event_name == 'push' || github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'run devdeps tests')))
uses: spacetelescope/webbpsf/.github/workflows/retrieve_cache.yml@develop
with:
minimal: true
latest_crds_contexts:
if: (github.repository == 'spacetelescope/romancal' && (github.event_name == 'schedule' || github.event_name == 'push' || github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'run devdeps tests')))
uses: ./.github/workflows/contexts.yml
crds_context:
needs: [ latest_crds_contexts ]
runs-on: ubuntu-latest
steps:
- id: context
run: echo context=${{ github.event_name == 'workflow_dispatch' && (inputs.crds_context != '' && inputs.crds_context || needs.latest_crds_contexts.outputs.roman) || needs.latest_crds_contexts.outputs.roman }} >> $GITHUB_OUTPUT
outputs:
context: ${{ steps.context.outputs.context }}
test:
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1
needs: [ webbpsf_data_cache, crds_context ]
with:
setenv: |
WEBBPSF_PATH: /tmp/data/webbpsf-data/
CRDS_PATH: /tmp/data/crds_cache/
CRDS_SERVER_URL: ${{ github.event_name == 'workflow_dispatch' && inputs.crds_server || 'https://roman-crds.stsci.edu' }}
CRDS_CONTEXT: ${{ needs.crds_context.outputs.context }}
CRDS_CLIENT_RETRY_COUNT: 3
CRDS_CLIENT_RETRY_DELAY_SECONDS: 20
cache-path: /tmp/data/
cache-key: data-${{ needs.webbpsf_data_cache.outputs.cache_key }}-${{ needs.crds_context.outputs.context }}
cache-restore-keys: ${{ needs.webbpsf_data_cache.outputs.cache_key }}
envs: |
- linux: py310-stdevdeps-webbpsf
- linux: py310-devdeps-webbpsf
- macos: py310-stdevdeps-webbpsf
- macos: py310-devdeps-webbpsf
- linux: py311-stdevdeps-webbpsf
- linux: py311-devdeps-webbpsf
- macos: py311-stdevdeps-webbpsf
- macos: py311-devdeps-webbpsf
- linux: py3-stdevdeps-webbpsf
pytest-results-summary: true
- linux: py3-devdeps-webbpsf
pytest-results-summary: true
- macos: py3-stdevdeps-webbpsf
pytest-results-summary: true
- macos: py3-devdeps-webbpsf
pytest-results-summary: true
- linux: py312-devdeps
python_version: "3.12-dev"