From 2708dcf45fe63f646cb61ec1e00425cfbb6107c1 Mon Sep 17 00:00:00 2001 From: jerrykingxyz Date: Fri, 3 Jan 2025 15:18:02 +0800 Subject: [PATCH] debug --- .github/workflows/ecosystem-ci.yml | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ecosystem-ci.yml b/.github/workflows/ecosystem-ci.yml index 57086fb786d7..442dcaad5946 100644 --- a/.github/workflows/ecosystem-ci.yml +++ b/.github/workflows/ecosystem-ci.yml @@ -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) @@ -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: | @@ -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: