-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
impr(UTAPI-96): Switch to scality/actions/action-ssh-to-runner
- Loading branch information
Showing
1 changed file
with
38 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,25 @@ name: tests | |
on: | ||
push: | ||
branches-ignore: | ||
- 'development/**' | ||
- 'development/**' | ||
|
||
workflow_dispatch: | ||
inputs: | ||
debug: | ||
description: Debug (enable the ability to SSH to runners) | ||
type: boolean | ||
required: false | ||
default: 'false' | ||
connection-timeout-m: | ||
type: number | ||
required: false | ||
description: Timeout for ssh connection to worker (minutes) | ||
default: 30 | ||
completion-delay-m: | ||
type: number | ||
required: false | ||
description: Job completion delay (minutes) | ||
default: 30 | ||
jobs: | ||
build-ci: | ||
uses: ./.github/workflows/build-ci.yaml | ||
|
@@ -233,9 +250,16 @@ jobs: | |
UTAPI_SERVICE_USER_ENABLED: 'true' | ||
UTAPI_LOG_LEVEL: trace | ||
SETUP_CMD: "run start_v2:server" | ||
- name: Setup tmate session | ||
uses: mxschmitt/action-tmate@v3 | ||
if: failure() | ||
- name: 'Debug: SSH to runner' | ||
uses: scality/actions/[email protected] | ||
timeout-minutes: ${{ fromJSON(github.event.inputs.connection-timeout-m) }} | ||
continue-on-error: true | ||
with: | ||
tmate-server-host: ${{ secrets.TMATE_SERVER_HOST }} | ||
tmate-server-port: ${{ secrets.TMATE_SERVER_PORT }} | ||
tmate-server-rsa-fingerprint: ${{ secrets.TMATE_SERVER_RSA_FINGERPRINT }} | ||
tmate-server-ed25519-fingerprint: ${{ secrets.TMATE_SERVER_ED25519_FINGERPRINT }} | ||
if: ${{ ( github.event.inputs.debug == true || github.event.inputs.debug == 'true' ) }} | ||
|
||
tests-v2-without-sensision: | ||
needs: | ||
|
@@ -348,6 +372,13 @@ jobs: | |
- name: ${{ matrix.test.name }} | ||
run: ${{ matrix.test.command }} | ||
env: ${{ matrix.test.env }} | ||
- name: Setup tmate session | ||
uses: mxschmitt/action-tmate@v3 | ||
if: failure() | ||
- name: 'Debug: SSH to runner' | ||
uses: scality/actions/[email protected] | ||
timeout-minutes: ${{ fromJSON(github.event.inputs.connection-timeout-m) }} | ||
continue-on-error: true | ||
with: | ||
tmate-server-host: ${{ secrets.TMATE_SERVER_HOST }} | ||
tmate-server-port: ${{ secrets.TMATE_SERVER_PORT }} | ||
tmate-server-rsa-fingerprint: ${{ secrets.TMATE_SERVER_RSA_FINGERPRINT }} | ||
tmate-server-ed25519-fingerprint: ${{ secrets.TMATE_SERVER_ED25519_FINGERPRINT }} | ||
if: ${{ ( github.event.inputs.debug == true || github.event.inputs.debug == 'true' ) }} |