We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df20953 commit 4bd8d3fCopy full SHA for 4bd8d3f
.github/workflows/ci.yml
@@ -873,7 +873,9 @@ jobs:
873
run: ./target/release/memory-report server &
874
875
- name: Run client
876
+ id: run-client
877
working-directory: tools/memory-report
878
+ continue-on-error: true
879
run: ./target/release/memory-report client > report.tsv
880
881
- name: Prepare artifacts
@@ -912,6 +914,12 @@ jobs:
912
914
name: "dhat / report"
913
915
status: "success"
916
url: "${{ steps.s3.outputs.URL }}"
917
+
918
+ - name: Check run client status
919
+ if: steps.run-client.outcome != 'success'
920
+ run: |
921
+ echo "Run client step failed"
922
+ exit 1
923
924
loom:
925
runs-on: ubuntu-latest
0 commit comments