CI: revert SGX retry attempts (#4421)

* Revert "Improve spec test execution by adding retry logic for transient errors (#4393)"

This reverts commit 64cafaff1e.

* Revert "Add error handling for sgx ci (#4222)"

This reverts commit 8ad47897d1.
This commit is contained in:
YAMAMOTO Takashi 2025-06-30 13:58:20 +09:00 committed by GitHub
parent 0127eafbe5
commit 4fbb372f15
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -288,24 +288,8 @@ jobs:
sudo swapon /swapfile
sudo swapon --show
- name: run spec tests with retry
id: run_spec_tests
uses: nick-fields/retry@v3
with:
command: |
cd ./tests/wamr-test-suites
- name: run spec tests
run: |
source /opt/intel/sgxsdk/environment
./test_wamr.sh ${{ matrix.test_option }} -t ${{ matrix.running_mode }}
max_attempts: 3
retry_on: error
shell: bash
timeout_minutes: 10
- name: print test results
run: |
echo "Test results:"
echo "${{ steps.run_spec_tests.outputs.stdout }}"
echo "${{ steps.run_spec_tests.outputs.stderr }}"
echo "Exit code: ${{ steps.run_spec_tests.outputs.exit_code }}"
echo "Exit error: ${{ steps.run_spec_tests.outputs.exit_error }}"
shell: bash
working-directory: ./tests/wamr-test-suites