-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
61903fe
commit 01dc7b2
Showing
9 changed files
with
155 additions
and
100 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
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
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,60 @@ | ||
name: Manual stable trigger | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
inputs: | ||
scenario: | ||
type: choice | ||
options: | ||
- 7.1.x | ||
- use custom testplan | ||
default: '7.1.x' | ||
description: 'Choose test scenario' | ||
limit: | ||
type: choice | ||
options: | ||
- 'no' | ||
- 'PHP8.1/MySQL5.7' | ||
- 'PHP8.1/MySQL8.0' | ||
- 'PHP8.2/MySQL5.7' | ||
- 'PHP8.2/MySQL8.0' | ||
default: 'PHP8.1/MySQL5.7' | ||
description: 'Limit to one PHP/MySQL combination' | ||
custom_testplan: | ||
type: string | ||
required: true | ||
description: 'URL/PATH of the testplan to run' | ||
default: '~/defaults/7.1.x.yaml,~/module-usercentrics.yaml' | ||
|
||
jobs: | ||
pull_module: | ||
uses: oxid-eSales/github-actions/.github/workflows/call-universal_test_workflow.yaml@v4 | ||
with: | ||
testplan: '~/defaults/7.1.x.yml,~/module-usercentrics.yaml' | ||
runs_on: '"ubuntu-latest"' | ||
defaults: 'v4' | ||
plan_folder: '.github/oxid-esales' | ||
secrets: | ||
DOCKER_HUB_USER: ${{ secrets.DOCKER_HUB_USER }} | ||
DOCKER_HUB_TOKEN: ${{ secrets.DOCKER_HUB_TOKEN }} | ||
CACHE_ENDPOINT: ${{ secrets.CACHE_ENDPOINT }} | ||
CACHE_ACCESS_KEY: ${{ secrets.CACHE_ACCESS_KEY }} | ||
CACHE_SECRET_KEY: ${{ secrets.CACHE_SECRET_KEY }} | ||
enterprise_github_token: ${{ secrets.enterprise_github_token }} | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
|
||
pull_module_ee: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Trigger EE workflow and wait for results | ||
uses: convictional/trigger-workflow-and-wait@v1.6.5 | ||
with: | ||
owner: oxid-esales | ||
repo: module-workflows | ||
github_user: ${{ secrets.CI_USER }} | ||
github_token: ${{ secrets.GH_CI_JENKINS_TOKEN }} | ||
workflow_file_name: evat_workflow.yaml | ||
ref: "b-7.1.x" | ||
client_payload: "{\"php\": \"8.2\", \"mysql\": \"8.0\", \"edition\": \"ee\", \"ref\": \"${{ github.ref_name }}\"}" |
This file was deleted.
Oops, something went wrong.
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,35 @@ | ||
name: Automatically triggered on pull request | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
pull_module: | ||
uses: oxid-eSales/github-actions/.github/workflows/call-universal_test_workflow.yaml@v4 | ||
with: | ||
testplan: '~/defaults/7.1.x.yml,~/module-usercentrics.yaml' | ||
runs_on: '"ubuntu-latest"' | ||
defaults: 'v4' | ||
plan_folder: '.github/oxid-esales' | ||
secrets: | ||
DOCKER_HUB_USER: ${{ secrets.DOCKER_HUB_USER }} | ||
DOCKER_HUB_TOKEN: ${{ secrets.DOCKER_HUB_TOKEN }} | ||
CACHE_ENDPOINT: ${{ secrets.CACHE_ENDPOINT }} | ||
CACHE_ACCESS_KEY: ${{ secrets.CACHE_ACCESS_KEY }} | ||
CACHE_SECRET_KEY: ${{ secrets.CACHE_SECRET_KEY }} | ||
enterprise_github_token: ${{ secrets.enterprise_github_token }} | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
|
||
pull_module_ee: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Trigger EE workflow and wait for results | ||
uses: convictional/trigger-workflow-and-wait@v1.6.5 | ||
with: | ||
owner: oxid-esales | ||
repo: module-workflows | ||
github_user: ${{ secrets.CI_USER }} | ||
github_token: ${{ secrets.GH_CI_JENKINS_TOKEN }} | ||
workflow_file_name: evat_workflow.yaml | ||
ref: "b-7.1.x" | ||
client_payload: "{\"php\": \"8.2\", \"mysql\": \"8.0\", \"edition\": \"ee\", \"ref\": \"${{ github.ref_name }}\"}" |
This file was deleted.
Oops, something went wrong.
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,38 @@ | ||
name: Automatically triggered on push | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'b-7.1.x*' | ||
|
||
jobs: | ||
pull_module: | ||
uses: oxid-eSales/github-actions/.github/workflows/call-universal_test_workflow.yaml@v4 | ||
with: | ||
testplan: '~/defaults/7.1.x.yml,~/module-usercentrics.yaml' | ||
runs_on: '"ubuntu-latest"' | ||
defaults: 'v4' | ||
plan_folder: '.github/oxid-esales' | ||
secrets: | ||
DOCKER_HUB_USER: ${{ secrets.DOCKER_HUB_USER }} | ||
DOCKER_HUB_TOKEN: ${{ secrets.DOCKER_HUB_TOKEN }} | ||
CACHE_ENDPOINT: ${{ secrets.CACHE_ENDPOINT }} | ||
CACHE_ACCESS_KEY: ${{ secrets.CACHE_ACCESS_KEY }} | ||
CACHE_SECRET_KEY: ${{ secrets.CACHE_SECRET_KEY }} | ||
enterprise_github_token: ${{ secrets.enterprise_github_token }} | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
|
||
pull_module_ee: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Trigger EE workflow and wait for results | ||
uses: convictional/trigger-workflow-and-wait@v1.6.5 | ||
with: | ||
owner: oxid-esales | ||
repo: module-workflows | ||
github_user: ${{ secrets.CI_USER }} | ||
github_token: ${{ secrets.GH_CI_JENKINS_TOKEN }} | ||
workflow_file_name: evat_workflow.yaml | ||
ref: "b-7.1.x" | ||
client_payload: "{\"php\": \"8.2\", \"mysql\": \"8.0\", \"edition\": \"ee\", \"ref\": \"${{ github.ref_name }}\"}" |
This file was deleted.
Oops, something went wrong.
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