forked from PrestaShop/PrestaShop
-
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.
Merge pull request PrestaShop#37188 from tleon/add-version-in-workflow
Add new version in workflows
- Loading branch information
Showing
8 changed files
with
69 additions
and
6 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
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,21 @@ | ||
# This workflow aim to run all UI tests on active branches | ||
# and upload the report on Google cloud platform storage | ||
name: Nightly tests and report - 9.0.x | ||
|
||
on: | ||
workflow_run: | ||
workflows: [ 'Nightly Build' ] | ||
types: | ||
- requested | ||
|
||
jobs: | ||
test_9_0_x: | ||
uses: ./.github/workflows/cron_nightly_tests_reusable.yml | ||
with: | ||
BRANCH: 9.0.x | ||
PHP_VERSION: '8.1' | ||
NODE_VERSION: '20' | ||
DB_SERVER: 'mariadb' | ||
secrets: | ||
GC_PROJECT_ID: ${{ secrets.GC_PROJECT_ID }} | ||
GC_SERVICE_KEY: ${{ secrets.GC_SERVICE_KEY }} |
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,21 @@ | ||
# This workflow aim to run all UI tests on active branches | ||
# and upload the report on Google cloud platform storage | ||
name: Nightly tests and report - 9.0.x | ||
|
||
on: | ||
workflow_run: | ||
workflows: [ 'Nightly Build' ] | ||
types: | ||
- requested | ||
|
||
jobs: | ||
test_9_0_x: | ||
uses: ./.github/workflows/cron_nightly_tests_reusable.yml | ||
with: | ||
BRANCH: 9.0.x | ||
PHP_VERSION: '8.1' | ||
NODE_VERSION: '20' | ||
DB_SERVER: 'mysql' | ||
secrets: | ||
GC_PROJECT_ID: ${{ secrets.GC_PROJECT_ID }} | ||
GC_SERVICE_KEY: ${{ secrets.GC_SERVICE_KEY }} |
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 |
---|---|---|
|
@@ -19,6 +19,7 @@ jobs: | |
matrix: | ||
BRANCH: | ||
- develop | ||
- 9.0.x | ||
- 8.2.x | ||
env: | ||
GH_BRANCH: ${{ matrix.BRANCH }} | ||
|