Skip to content

Commit

Permalink
w
Browse files Browse the repository at this point in the history
Signed-off-by: Miki <[email protected]>
  • Loading branch information
AMoo-Miki committed Dec 20, 2024
1 parent d0e5a46 commit 141f944
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 21 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/cypress12_tests.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,6 @@

name: Cypress 12 experimental tests

on:
push:
branches: ['**'] # Run the functional test on push for only release branches
paths-ignore:
- '**/*.md'
- 'docs/**'
- '.lycheeignore'
- 'CODEOWNERS'
- 'changelogs/fragments/**'
pull_request:
branches: ['**']
paths-ignore:
- '**/*.md'
- 'docs/**'
- '.lycheeignore'
- 'CODEOWNERS'
- 'changelogs/fragments/**'

env:
CYPRESS_BROWSER: 'chromium'
CYPRESS_VISBUILDER_ENABLED: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cypress_tests_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:

- name: Trigger tests for combinations
run: |
for combo in "${COMBINATIONS[@]}"; do
echo "Triggering tests with combination: ${combo[*]}"
echo "$COMBINATIONS" | jq -c '.[]' | while read -r combo; do
echo "Triggering tests for $folder_name with combination: $combo"
inputs=""
for var in "${combo[@]}"; do
echo $combo | jq -r '.[]' | while read -r var; do
inputs="$inputs -f $var=true"
done
echo "Input: ${inputs}"
Expand Down

0 comments on commit 141f944

Please sign in to comment.