File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ CONFIG_ID="${CONFIG_ID//[^a-zA-Z0-9_-]/_}"
99
1010echo " Extracting skipped tests for configuration: ${CONFIG_ID} "
1111
12+ # Output CONFIG_ID to GitHub Actions
13+ echo " CONFIG_ID=${CONFIG_ID} " >> " $GITHUB_OUTPUT "
14+
1215# Extract skipped tests from XML files using xmllint
1316SKIPPED_FOUND=false
1417
Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ jobs:
254254 DB_INNOVATION : ${{ inputs.db-innovation && 'innovation' || 'stable' }}
255255 TESTS_DOMAIN : ${{ inputs.tests-domain }}
256256 run : |
257- CONFIG_OUTPUT=$( ./.github/scripts/extract-skipped-tests.sh \
257+ ./.github/scripts/extract-skipped-tests.sh \
258258 "${PHP_VERSION}" \
259259 "${DB_TYPE}" \
260260 "${DB_VERSION}" \
@@ -263,11 +263,7 @@ jobs:
263263 "${TEST_GROUPS}" \
264264 "${OS}" \
265265 "${DB_INNOVATION}" \
266- "${TESTS_DOMAIN}")
267-
268- # Extract CONFIG_ID from the script output
269- CONFIG_ID=$(echo "$CONFIG_OUTPUT" | grep "CONFIG_ID=" | cut -d= -f2)
270- echo "CONFIG_ID=${CONFIG_ID}" >> "$GITHUB_OUTPUT"
266+ "${TESTS_DOMAIN}"
271267
272268 - name : Upload skipped tests summary
273269 uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
You can’t perform that action at this time.
0 commit comments