-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Test installation assistant tier and distributed workflows
- Loading branch information
Showing
2 changed files
with
123 additions
and
0 deletions.
There are no files selected for viewing
43 changes: 43 additions & 0 deletions
43
.github/workflows/Test_installation_assistant_distributed.yml
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
run-name: (Distributed) Test installation assistant - Launched by @${{ github.actor }} | ||
name: (Distributed) Test installation assistant | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'cert_tool/**' | ||
- 'common_functions/**' | ||
- 'config/**' | ||
- 'install_functions/**' | ||
- 'passwords_tool/**' | ||
- 'tests/**' | ||
workflow_dispatch: | ||
inputs: | ||
REPOSITORY: | ||
description: 'Repository environment' | ||
required: true | ||
default: 'pre-release' | ||
type: choice | ||
options: | ||
- staging | ||
- pre-release | ||
DEBUG: | ||
description: 'Debug mode' | ||
required: true | ||
default: false | ||
type: boolean | ||
DESTROY: | ||
description: 'Destroy instances after run' | ||
required: true | ||
default: true | ||
type: boolean | ||
|
||
env: | ||
LABEL: ubuntu-latest | ||
|
||
jobs: | ||
initialize-environment: | ||
runs-on: $LABEL | ||
|
||
steps: | ||
- name: Set up Git | ||
uses: actions/checkout@v3 |
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 |
---|---|---|
@@ -0,0 +1,80 @@ | ||
run-name: (Tier) Test installation assistant - Launched by @${{ github.actor }} | ||
name: (Tier) Test installation assistant | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
REPOSITORY: | ||
description: 'Repository environment' | ||
required: true | ||
default: 'pre-release' | ||
type: choice | ||
options: | ||
- staging | ||
- pre-release | ||
CentOS_7: | ||
description: 'CentOS 7' | ||
required: true | ||
default: false | ||
type: boolean | ||
CentOS_8: | ||
description: 'CentOS 8' | ||
required: true | ||
default: true | ||
type: boolean | ||
Amazon_Linux_2: | ||
description: 'Amazon Linux 2' | ||
required: true | ||
default: false | ||
type: boolean | ||
Ubuntu_16: | ||
description: 'Ubuntu 16' | ||
required: true | ||
default: false | ||
type: boolean | ||
Ubuntu_18: | ||
description: 'Ubuntu 18' | ||
required: true | ||
default: false | ||
type: boolean | ||
Ubuntu_20: | ||
description: 'Ubuntu 20' | ||
required: true | ||
default: false | ||
type: boolean | ||
Ubuntu_22: | ||
description: 'Ubuntu 22' | ||
required: true | ||
default: false | ||
type: boolean | ||
RHEL_7: | ||
description: 'RHEL 7' | ||
required: true | ||
default: false | ||
type: boolean | ||
RHEL_8: | ||
description: 'RHEL 8' | ||
required: true | ||
default: false | ||
type: boolean | ||
DEBUG: | ||
description: 'Debug mode' | ||
required: true | ||
default: false | ||
type: boolean | ||
DESTROY: | ||
description: 'Destroy instances after run' | ||
required: true | ||
default: true | ||
type: boolean | ||
|
||
env: | ||
LABEL: ubuntu-latest | ||
|
||
jobs: | ||
launch-tests: | ||
runs-on: $LABEL | ||
|
||
steps: | ||
- name: Set up Git | ||
uses: actions/checkout@v3 |