Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
workflow: adjust github env for ubsan options
  • Loading branch information
RafaelGSS committed Mar 2, 2024
commit f989175b800fa21dddfef907f9a7a0f4e218ba6b
20 changes: 9 additions & 11 deletions .github/workflows/test-ubsan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,23 +44,21 @@ jobs:
CXX: g++
LINK: g++
CONFIG_FLAGS: --enable-ubsan
UBSAN_OPTIONS: "$GITHUB_WORKSPACE/suppressions.supp:print_stacktrace=1"
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: Store suppressions path
- name: Debug
run: |
echo "UBSAN_OPTIONS=$GITHUB_WORKSPACE/suppressions.supp:print_stacktrace=1" >> $GITHUB_ENV
echo "$UBSAN_OPTIONS"
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Check UBSAN_OPTIONS
run: |
echo $UBSAN_OPTIONS
# - name: Environment Information
# run: npx envinfo
# - name: Build
# run: make build-ci -j2 V=1
# - name: Test
# run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions -t 300 --measure-flakiness 9"
- name: Environment Information
run: npx envinfo
- name: Build
run: make build-ci -j2 V=1
- name: Test
run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions -t 300 --measure-flakiness 9"
1 change: 0 additions & 1 deletion suppressions.supp
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
deps/icu-small/*
vptr:deps/icu-small/source/common/uloc_tag.cpp
vptr:deps/icu-small/source/common/unistr.cpp
shift-base:deps/v8/src/wasm/decoder.h
Expand Down