RCAL-1175: Implement multiband associations. (#2077) #706
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: extra tests | |
| 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: | |
| 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 extra tests'))) | |
| uses: ./.github/workflows/contexts.yml | |
| crds_context: | |
| 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 extra tests'))) | |
| 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: | |
| 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 extra tests'))) | |
| uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v2 | |
| needs: [ crds_context ] | |
| with: | |
| setenv: | | |
| 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.crds_context.outputs.context }} | |
| envs: | | |
| - macos: py311 | |
| - macos: py312 | |
| - macos: py313 | |
| # TODO: merge stdevdeps into devdeps | |
| - linux: py313-stdevdeps | |
| pytest-results-summary: true | |
| - macos: py313-stdevdeps | |
| pytest-results-summary: true | |
| - linux: py313-devdeps | |
| pytest-results-summary: true | |
| - macos: py313-devdeps | |
| pytest-results-summary: true |