Skip to content

Commit

Permalink
check log
Browse files Browse the repository at this point in the history
  • Loading branch information
zhoucheng361 committed Mar 8, 2025
1 parent 5d5f37c commit 48003af
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/pysdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,13 @@ jobs:
run: |
source .github/scripts/start_meta_engine.sh
meta_url=$(get_meta_url ${{matrix.meta}})
sudo USE_SDK=true META_URL=$meta_url python3 .github/scripts/hypo/fs.py
sudo USE_SDK=true META_URL=$meta_url python3 .github/scripts/hypo/fs.py 2>&1 | tee fsrand.log
exit ${PIPESTATUS[0]}
- name: check fsrand.log
if: always()
run: |
sudo tail -n 500 fsrand.log
- name: Upload example database
uses: actions/upload-artifact@v4
Expand All @@ -172,6 +178,7 @@ jobs:
include-hidden-files: true
name: hypothesis-example-db-${{ matrix.meta }}
path: .hypothesis/examples
overwrite: true

- name: upload coverage report
timeout-minutes: 5
Expand Down

0 comments on commit 48003af

Please sign in to comment.