Skip to content

Commit cef4b7e

Browse files
targosmarco-ippolito
authored andcommitted
tools: sync ubsan workflow with asan
Configs have changed since the ubsan PR was initially opened. PR-URL: #52152 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent 6da446d commit cef4b7e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/test-ubsan.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- AUTHORS
1010
- doc/**
1111
- .github/**
12-
- '!.github/workflows/ubsan-asan.yml'
12+
- '!.github/workflows/test-ubsan.yml'
1313
push:
1414
branches:
1515
- main
@@ -22,7 +22,7 @@ on:
2222
- AUTHORS
2323
- doc/**
2424
- .github/**
25-
- '!.github/workflows/ubsan-asan.yml'
25+
- '!.github/workflows/test-ubsan.yml'
2626

2727
concurrency:
2828
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
@@ -45,19 +45,19 @@ jobs:
4545
LINK: g++
4646
CONFIG_FLAGS: --enable-ubsan
4747
steps:
48-
- uses: actions/checkout@v3
48+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
4949
with:
5050
persist-credentials: false
5151
- name: Store suppressions path
5252
run: |
5353
echo "UBSAN_OPTIONS=suppressions=$GITHUB_WORKSPACE/suppressions.supp" >> $GITHUB_ENV
5454
- name: Set up Python ${{ env.PYTHON_VERSION }}
55-
uses: actions/setup-python@v4
55+
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
5656
with:
5757
python-version: ${{ env.PYTHON_VERSION }}
5858
- name: Environment Information
5959
run: npx envinfo
6060
- name: Build
6161
run: make build-ci -j2 V=1
6262
- name: Test
63-
run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions -t 300 --measure-flakiness 9"
63+
run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions --node-args='--test-reporter=spec' --node-args='--test-reporter-destination=stdout' -t 300 --measure-flakiness 9"

0 commit comments

Comments
 (0)