Skip to content

Commit

Permalink
Have ASAN/UBSAN stderr in an artifact file
Browse files Browse the repository at this point in the history
  • Loading branch information
tvami committed Sep 25, 2024
1 parent 3a27768 commit f46a9d1
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/asan_ubsan_build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

name: Build with ASAN/UBSAN
name: Build with ASAN and UBSAN

on:
workflow_dispatch:
Expand Down Expand Up @@ -35,8 +35,13 @@ jobs:
run: |
just setenv LDMX_NUM_EVENTS=1500
just setenv LDMX_RUN_NUMBER=1
export LDMX_NUM_EVENTS=1500
export LDMX_NUM_EVENTS=15
export LDMX_RUN_NUMBER=1
just fire ${GITHUB_WORKSPACE}/.github/validation_samples/ecal_pn/config.py
just fire ${GITHUB_WORKSPACE}/.github/validation_samples/ecal_pn/config.py 2> output.log
shell: bash

- name: Upload output artifact
uses: actions/upload-artifact@v3
with:
name: ASAN_UBSAN-output
path: output.log

0 comments on commit f46a9d1

Please sign in to comment.