Fix GitHub Actions workflow failures
- Add WP_PHPUNIT__DIR and WP_TESTS_DIR environment variables to PHPUnit workflow to fix 'WP_UnitTestCase not found' error - Increase WordPress Playground server timeout from 60s to 180s with better progress logging to fix timeout failures - Add conditional checks for SONAR_TOKEN and CODACY_PROJECT_TOKEN to gracefully skip analysis when tokens are not set - Properly handle server process lifecycle in Playground tests (capture PID, kill on completion)
This commit is contained in:
22
.github/workflows/code-quality.yml
vendored
22
.github/workflows/code-quality.yml
vendored
@@ -109,7 +109,18 @@ jobs:
|
|||||||
key: ${{ runner.os }}-sonar
|
key: ${{ runner.os }}-sonar
|
||||||
restore-keys: ${{ runner.os }}-sonar
|
restore-keys: ${{ runner.os }}-sonar
|
||||||
|
|
||||||
|
- name: Check if SonarCloud token is set
|
||||||
|
id: check_sonar_token
|
||||||
|
run: |
|
||||||
|
if [ -z "${{ secrets.SONAR_TOKEN }}" ]; then
|
||||||
|
echo "SONAR_TOKEN is not set, skipping SonarCloud analysis"
|
||||||
|
echo "skip=true" >> $GITHUB_OUTPUT
|
||||||
|
else
|
||||||
|
echo "skip=false" >> $GITHUB_OUTPUT
|
||||||
|
fi
|
||||||
|
|
||||||
- name: SonarCloud Scan
|
- name: SonarCloud Scan
|
||||||
|
if: steps.check_sonar_token.outputs.skip != 'true'
|
||||||
uses: SonarSource/sonarqube-scan-action@master
|
uses: SonarSource/sonarqube-scan-action@master
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
@@ -132,6 +143,16 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Check if Codacy token is set
|
||||||
|
id: check_codacy_token
|
||||||
|
run: |
|
||||||
|
if [ -z "${{ secrets.CODACY_PROJECT_TOKEN }}" ]; then
|
||||||
|
echo "CODACY_PROJECT_TOKEN is not set, running Codacy without upload"
|
||||||
|
echo "skip_upload=true" >> $GITHUB_OUTPUT
|
||||||
|
else
|
||||||
|
echo "skip_upload=false" >> $GITHUB_OUTPUT
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Run Codacy Analysis CLI
|
- name: Run Codacy Analysis CLI
|
||||||
uses: codacy/codacy-analysis-cli-action@5cc54a75f9ad8e86bb795a5d3d4f2f70c9baa1a7 # v4.3.0
|
uses: codacy/codacy-analysis-cli-action@5cc54a75f9ad8e86bb795a5d3d4f2f70c9baa1a7 # v4.3.0
|
||||||
with:
|
with:
|
||||||
@@ -147,6 +168,7 @@ jobs:
|
|||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
- name: Upload SARIF results file
|
- name: Upload SARIF results file
|
||||||
|
if: steps.check_codacy_token.outputs.skip_upload != 'true'
|
||||||
uses: github/codeql-action/upload-sarif@cdcdbb579706841c47f7063dda365e292e5cad7a # v2.2.7
|
uses: github/codeql-action/upload-sarif@cdcdbb579706841c47f7063dda365e292e5cad7a # v2.2.7
|
||||||
with:
|
with:
|
||||||
sarif_file: results.sarif
|
sarif_file: results.sarif
|
||||||
|
|||||||
3
.github/workflows/phpunit.yml
vendored
3
.github/workflows/phpunit.yml
vendored
@@ -57,6 +57,9 @@ jobs:
|
|||||||
echo "WordPress test suite installed successfully"
|
echo "WordPress test suite installed successfully"
|
||||||
|
|
||||||
- name: Run PHPUnit tests
|
- name: Run PHPUnit tests
|
||||||
|
env:
|
||||||
|
WP_PHPUNIT__DIR: /tmp/wordpress-tests-lib
|
||||||
|
WP_TESTS_DIR: /tmp/wordpress-tests-lib
|
||||||
run: |
|
run: |
|
||||||
if [ "${{ matrix.multisite }}" = "true" ]; then
|
if [ "${{ matrix.multisite }}" = "true" ]; then
|
||||||
WP_MULTISITE=1 composer test
|
WP_MULTISITE=1 composer test
|
||||||
|
|||||||
17
.github/workflows/playground-tests-fix.yml
vendored
17
.github/workflows/playground-tests-fix.yml
vendored
@@ -56,10 +56,21 @@ jobs:
|
|||||||
npx @wp-playground/cli server --blueprint playground/blueprint.json --port 8888 --login &
|
npx @wp-playground/cli server --blueprint playground/blueprint.json --port 8888 --login &
|
||||||
SERVER_PID=$!
|
SERVER_PID=$!
|
||||||
|
|
||||||
# Wait for WordPress Playground to be ready
|
# Wait for WordPress Playground to be ready (increased timeout to 180s)
|
||||||
echo "Waiting for WordPress Playground to be ready..."
|
echo "Waiting for WordPress Playground to be ready..."
|
||||||
timeout 60 bash -c 'until curl -s http://localhost:8888; do sleep 2; done'
|
TIMEOUT=180
|
||||||
echo "WordPress Playground is ready"
|
ELAPSED=0
|
||||||
|
while ! curl -s http://localhost:8888 > /dev/null 2>&1; do
|
||||||
|
if [ $ELAPSED -ge $TIMEOUT ]; then
|
||||||
|
echo "Timeout waiting for WordPress Playground to start"
|
||||||
|
kill $SERVER_PID || true
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "Waiting... ($ELAPSED/$TIMEOUT seconds)"
|
||||||
|
sleep 5
|
||||||
|
ELAPSED=$((ELAPSED + 5))
|
||||||
|
done
|
||||||
|
echo "WordPress Playground is ready after $ELAPSED seconds"
|
||||||
|
|
||||||
# Run Cypress tests against WordPress Playground
|
# Run Cypress tests against WordPress Playground
|
||||||
echo "Running Cypress tests..."
|
echo "Running Cypress tests..."
|
||||||
|
|||||||
34
.github/workflows/playground-tests.yml
vendored
34
.github/workflows/playground-tests.yml
vendored
@@ -84,10 +84,21 @@ jobs:
|
|||||||
npx @wp-playground/cli server --blueprint playground/blueprint.json --port 8888 --login &
|
npx @wp-playground/cli server --blueprint playground/blueprint.json --port 8888 --login &
|
||||||
SERVER_PID=$!
|
SERVER_PID=$!
|
||||||
|
|
||||||
# Wait for WordPress Playground to be ready
|
# Wait for WordPress Playground to be ready (increased timeout to 180s)
|
||||||
echo "Waiting for WordPress Playground to be ready..."
|
echo "Waiting for WordPress Playground to be ready..."
|
||||||
timeout 60 bash -c 'until curl -s http://localhost:8888; do sleep 2; done'
|
TIMEOUT=180
|
||||||
echo "WordPress Playground is ready"
|
ELAPSED=0
|
||||||
|
while ! curl -s http://localhost:8888 > /dev/null 2>&1; do
|
||||||
|
if [ $ELAPSED -ge $TIMEOUT ]; then
|
||||||
|
echo "Timeout waiting for WordPress Playground to start"
|
||||||
|
kill $SERVER_PID || true
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "Waiting... ($ELAPSED/$TIMEOUT seconds)"
|
||||||
|
sleep 5
|
||||||
|
ELAPSED=$((ELAPSED + 5))
|
||||||
|
done
|
||||||
|
echo "WordPress Playground is ready after $ELAPSED seconds"
|
||||||
|
|
||||||
# Run Cypress tests against WordPress Playground
|
# Run Cypress tests against WordPress Playground
|
||||||
echo "Running Cypress tests..."
|
echo "Running Cypress tests..."
|
||||||
@@ -152,10 +163,21 @@ jobs:
|
|||||||
npx @wp-playground/cli server --blueprint playground/multisite-blueprint.json --port 8889 --login &
|
npx @wp-playground/cli server --blueprint playground/multisite-blueprint.json --port 8889 --login &
|
||||||
SERVER_PID=$!
|
SERVER_PID=$!
|
||||||
|
|
||||||
# Wait for WordPress Playground to be ready
|
# Wait for WordPress Playground to be ready (increased timeout to 180s)
|
||||||
echo "Waiting for WordPress Playground to be ready..."
|
echo "Waiting for WordPress Playground to be ready..."
|
||||||
timeout 60 bash -c 'until curl -s http://localhost:8889; do sleep 2; done'
|
TIMEOUT=180
|
||||||
echo "WordPress Playground is ready"
|
ELAPSED=0
|
||||||
|
while ! curl -s http://localhost:8889 > /dev/null 2>&1; do
|
||||||
|
if [ $ELAPSED -ge $TIMEOUT ]; then
|
||||||
|
echo "Timeout waiting for WordPress Playground to start"
|
||||||
|
kill $SERVER_PID || true
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "Waiting... ($ELAPSED/$TIMEOUT seconds)"
|
||||||
|
sleep 5
|
||||||
|
ELAPSED=$((ELAPSED + 5))
|
||||||
|
done
|
||||||
|
echo "WordPress Playground is ready after $ELAPSED seconds"
|
||||||
|
|
||||||
# Run Cypress tests against WordPress Playground
|
# Run Cypress tests against WordPress Playground
|
||||||
echo "Running Cypress multisite tests..."
|
echo "Running Cypress multisite tests..."
|
||||||
|
|||||||
11
.github/workflows/sonarcloud.yml
vendored
11
.github/workflows/sonarcloud.yml
vendored
@@ -27,7 +27,18 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
||||||
|
|
||||||
|
- name: Check if SonarCloud token is set
|
||||||
|
id: check_token
|
||||||
|
run: |
|
||||||
|
if [ -z "${{ secrets.SONAR_TOKEN }}" ]; then
|
||||||
|
echo "SONAR_TOKEN is not set, skipping SonarCloud analysis"
|
||||||
|
echo "skip=true" >> $GITHUB_OUTPUT
|
||||||
|
else
|
||||||
|
echo "skip=false" >> $GITHUB_OUTPUT
|
||||||
|
fi
|
||||||
|
|
||||||
- name: SonarCloud Scan
|
- name: SonarCloud Scan
|
||||||
|
if: steps.check_token.outputs.skip != 'true'
|
||||||
uses: SonarSource/sonarqube-scan-action@master
|
uses: SonarSource/sonarqube-scan-action@master
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
|
||||||
|
|||||||
24
.github/workflows/wordpress-tests.yml
vendored
24
.github/workflows/wordpress-tests.yml
vendored
@@ -81,13 +81,33 @@ jobs:
|
|||||||
|
|
||||||
# Start WordPress Playground with our blueprint
|
# Start WordPress Playground with our blueprint
|
||||||
npx @wp-playground/cli server --blueprint playground/blueprint.json --port 8888 --login &
|
npx @wp-playground/cli server --blueprint playground/blueprint.json --port 8888 --login &
|
||||||
|
SERVER_PID=$!
|
||||||
|
|
||||||
# Wait for WordPress Playground to be ready
|
# Wait for WordPress Playground to be ready (increased timeout to 180s)
|
||||||
echo "Waiting for WordPress Playground to be ready..."
|
echo "Waiting for WordPress Playground to be ready..."
|
||||||
timeout 60 bash -c 'until curl -s http://localhost:8888; do sleep 2; done'
|
TIMEOUT=180
|
||||||
|
ELAPSED=0
|
||||||
|
while ! curl -s http://localhost:8888 > /dev/null 2>&1; do
|
||||||
|
if [ $ELAPSED -ge $TIMEOUT ]; then
|
||||||
|
echo "Timeout waiting for WordPress Playground to start"
|
||||||
|
kill $SERVER_PID || true
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "Waiting... ($ELAPSED/$TIMEOUT seconds)"
|
||||||
|
sleep 5
|
||||||
|
ELAPSED=$((ELAPSED + 5))
|
||||||
|
done
|
||||||
|
echo "WordPress Playground is ready after $ELAPSED seconds"
|
||||||
|
|
||||||
# Run tests against WordPress Playground
|
# Run tests against WordPress Playground
|
||||||
npx cypress run --spec "cypress/e2e/playground-single-site.cy.js"
|
npx cypress run --spec "cypress/e2e/playground-single-site.cy.js"
|
||||||
|
TEST_EXIT_CODE=$?
|
||||||
|
|
||||||
|
# Kill the server process
|
||||||
|
kill $SERVER_PID || true
|
||||||
|
|
||||||
|
# Return the test exit code
|
||||||
|
exit $TEST_EXIT_CODE
|
||||||
|
|
||||||
- name: Upload Cypress artifacts
|
- name: Upload Cypress artifacts
|
||||||
if: always()
|
if: always()
|
||||||
|
|||||||
Reference in New Issue
Block a user