Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
jerrykingxyz committed Jan 3, 2025
1 parent 3901dbd commit 2708dcf
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/ecosystem-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,15 @@ jobs:
script: |
const suiteName = `${{ github.event_name == 'workflow_dispatch' && inputs.suite || '-' }}`;
let result = [
"modernjs",
// "modernjs",
// "nx",
"rspress",
"rslib",
"rsbuild",
"rsdoctor",
// "rspress",
// "rslib",
// "rsbuild",
// "rsdoctor",
"examples",
"devserver",
"nuxt",
// "devserver",
// "nuxt",
]
if (suiteName !== "-") {
result = allSuite.filter(item => item === suiteName)
Expand Down Expand Up @@ -153,6 +153,9 @@ jobs:
- name: Build JS
run: pnpm run build:js

#- name: Setup tmate session
# uses: mxschmitt/action-tmate@v3

- name: Run rspack-ecosystem-ci
id: run-ci
run: |
Expand All @@ -167,16 +170,14 @@ jobs:
SUITE='${{ matrix.suite }}'
SUITE_REF='${{ inputs.suiteRef || '-' }}'
if [[ "$SUITE" != "-" && "$SUITE_REF" != "-" ]]; then
echo "run $SUITE with $SUITE_REF"
if [[ "$SUITE_REF" != "-" ]]; then
# run test suite with suiteRef
pnpm tsx ecosystem-ci.ts run-suites --suite-commit "$SUITE_REF" "$SUITE"
echo "run finish with ref"
echo "finish run $SUITE with $SUITE_REF"
else
# run test suite
echo "run $SUITE"
pnpm tsx ecosystem-ci.ts run-suites "$SUITE"
echo "run finish"
echo "finish run $SUITE"
fi
comment-compare-results:
Expand Down

1 comment on commit 2708dcf

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented on 2708dcf Jan 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 Ecosystem CI detail: Open

suite result
examples ❌ failure

Please sign in to comment.