Skip to content
Merged
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
7 changes: 4 additions & 3 deletions .github/actions/hps_services/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,10 @@ runs:
- name: Wait for services
shell: bash
run: |
curl -k --head -X GET --retry 30 --retry-connrefused --retry-delay 5 https://localhost:8443/hps/jms/api/v1
curl -k --head -X GET --retry 30 --retry-connrefused --retry-delay 1 https://localhost:8443/hps/fs/api/v1
curl -k --head -X GET --retry 30 --retry-connrefused --retry-delay 1 https://localhost:8443/hps/rms/api/v1
# retry each service max 20 times
wget --retry-connrefused --retry-on-http-error=503,404 --no-check-certificate -t 20 -O- https://localhost:8443/hps/jms/api/v1
wget --retry-connrefused --retry-on-http-error=503,404 --no-check-certificate -t 20 -O- https://localhost:8443/hps/fs/api/v1
wget --retry-connrefused --retry-on-http-error=503,404 --no-check-certificate -t 20 -O- https://localhost:8443/hps/rms/api/v1

- name: Set outputs
id: set-outputs
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
type: choice
options:
- 'v1.0.2'
- 'v1.0.3'
- 'v1.1.1'
- 'v1.2.0'
- 'latest-dev'
hps-feature:
description: HPS feature to test against
Expand Down Expand Up @@ -55,7 +56,7 @@ jobs:
python-version: ${{ matrix.cfg.python-version }}
toxenv: ${{ matrix.cfg.toxenv }}
runner: ${{ matrix.os }}
hps-version: ${{ inputs.hps-version || 'latest-dev' }}
hps-version: ${{ inputs.hps-version || 'v1.2.0' }}
hps-feature: ${{ inputs.hps-feature || 'main' }}

docs:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
type: choice
options:
- 'v1.0.2'
- 'v1.0.3'
- 'v1.1.1'
- 'v1.2.0'
- 'latest-dev'

schedule:
Expand Down Expand Up @@ -45,7 +46,7 @@ jobs:
python-version: ${{ matrix.cfg.python-version }}
toxenv: ${{ matrix.cfg.toxenv }}
runner: ${{ matrix.os }}
hps-version: ${{ inputs.hps-version || 'latest-dev' }}
hps-version: ${{ inputs.hps-version || 'v1.2.0' }}

smoke-tests:
name: Build and Smoke tests
Expand Down
2 changes: 1 addition & 1 deletion codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ coverage:
status:
project:
default:
target: 90%
target: 85%
patch: off


Expand Down
Loading