Internal: Parallel smoke testing #12343
Workflow file for this run
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
name: 🔥 Parallel Smoke Tests | |
on: | |
pull_request: | |
jobs: | |
run-smoke-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
path: src | |
- name: Validate composer.json and composer.lock | |
run: | | |
cd src && composer validate --strict --no-check-all | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v4 | |
with: | |
path: src/vendor | |
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-php- | |
- name: Install Composer Dependencies | |
run: | | |
cd src && composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | |
- name: Prepare test directories | |
run: | | |
# Move .git directory out of src | |
mv src/.git . | |
# Create a base test directory | |
mkdir base_test | |
# Move essential files and directories | |
mv src/{composer.json,composer.lock,vendor,tests} base_test/ | |
# Create symlinks for other directories | |
for dir in src/*; do | |
if [ -d "$dir" ]; then | |
ln -s "../src/$(basename $dir)" "base_test/$(basename $dir)" | |
fi | |
done | |
# Create test suite directories | |
for suite in unit feature_hyde feature_framework publications realtime_compiler; do | |
cp -R base_test ${suite}_tests | |
done | |
# Clean up | |
rm -rf base_test | |
- name: Execute Tests in Parallel | |
run: | | |
mkdir -p test_results | |
mkdir -p test_outputs | |
# Function to run tests | |
run_tests() { | |
local suite=$1 | |
local testsuite=$2 | |
echo "${suite^} tests started" | |
cd ${suite}_tests | |
vendor/bin/pest --colors=always --stop-on-failure --log-junit="../test_results/${suite}_junit.xml" --testsuite="$testsuite" > "../test_outputs/${suite}.log" 2>&1 | |
echo "${suite^} tests completed" | |
} | |
# Run tests in parallel | |
(run_tests unit UnitFramework) & | |
(run_tests feature_hyde FeatureHyde) & | |
(run_tests feature_framework FeatureFramework) & | |
(run_tests publications Publications) & | |
(run_tests realtime_compiler "Realtime Compiler") & | |
# Wait for all background jobs to finish | |
wait | |
- name: Display Unit Tests Output | |
run: cat test_outputs/unit.log | |
- name: Display Feature Hyde Tests Output | |
run: cat test_outputs/feature_hyde.log | |
- name: Display Feature Framework Tests Output | |
run: cat test_outputs/feature_framework.log | |
- name: Display Publications Tests Output | |
run: cat test_outputs/publications.log | |
- name: Display Realtime Compiler Tests Output | |
run: cat test_outputs/realtime_compiler.log | |
- name: Merge JUnit XML Reports | |
run: | | |
php -r ' | |
$files = glob("test_results/*_junit.xml"); | |
$totalTests = $totalAssertions = $totalTime = 0; | |
foreach ($files as $file) { | |
$xml = simplexml_load_file($file); | |
$totalTests += (int)$xml->testsuite["tests"]; | |
$totalAssertions += (int)$xml->testsuite["assertions"]; | |
$totalTime += (float)$xml->testsuite["time"]; | |
} | |
$output = sprintf( | |
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<testsuites>\n <testsuite name=\"%s\" tests=\"%d\" assertions=\"%d\" errors=\"0\" failures=\"0\" skipped=\"0\" time=\"%.6f\">\n </testsuite>\n</testsuites>", | |
"H:\\monorepo\\phpunit.xml.dist", | |
$totalTests, | |
$totalAssertions, | |
$totalTime | |
); | |
file_put_contents("report.xml", $output); | |
' | |
- name: Ping statistics server with test results | |
run: | | |
curl https://raw.githubusercontent.com/hydephp/develop/6e9d17f31879f4ccda13a3fec4029c9663bccec0/monorepo/scripts/ping-openanalytics-testrunner.php -o ping.php | |
php ping.php "Monorepo Smoke Tests" ${{ secrets.OPENANALYTICS_TOKEN }} ${{ github.ref_name }} |