Skip to content

Commit

Permalink
DEBUG: yep, no check in pluheese!
Browse files Browse the repository at this point in the history
  • Loading branch information
kgiusti committed May 23, 2024
1 parent 159cdd1 commit b11fc35
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,7 @@ jobs:
run: |
sudo sysctl -w kernel.core_pattern="coredump.%e.%p"
ulimit -c unlimited
sudo sysctl -w vm.mmap_rnd_bits=28
ctest --timeout 1200 -V --output-junit=Testing/Test.xml --no-compress-output -I ${{matrix.shard}},,${{matrix.shards}} -j12 ${{env.RouterCTestExtraArgs}}
- name: Report coredump stacktraces (if any tests failed)
Expand Down Expand Up @@ -488,7 +489,7 @@ jobs:
####################

compile_and_test:
name: "Compile and Test (${{matrix.container}}:${{matrix.containerTag}}, ${{matrix.buildType}}, proton ${{matrix.protonGitRef}}, shard ${{matrix.shard}} of ${{matrix.shards}})"
name: "Compile and Test (${{matrix.container}}:${{matrix.containerTag}}, ${{matrix.buildType}}, ${{matrix.runtimeCheck}}, proton ${{matrix.protonGitRef}}, shard ${{matrix.shard}} of ${{matrix.shards}})"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -500,12 +501,17 @@ jobs:
cxx: [g++]
python: [python3.11]
buildType: [RelWithDebInfo, Debug]
runtimeCheck: [OFF]
runtimeCheck: [asan, tsan]
protonGitRef:
- ${{ github.event.inputs.protonBranch || 'main' }}
- 0.39.0
shard: [ 1, 2 ]
shards: [ 2 ]
exclude:
- buildType: Debug
runtimeCheck: tsan
- buildType: RelWithDebInfo
runtimeCheck: asan
include:
# CentOS 9: Coverage Proton-main 1 of 2
- os: ubuntu-22.04
Expand All @@ -516,8 +522,8 @@ jobs:
python: python3
buildType: Coverage
covType: system
runtimeCheck: OFF
protonGitRef: ${{ github.event.inputs.protonBranch || 'main' }}
runtimeCheck: [OFF]
shard: 1
shards: 2
# CentOS 9: Coverage Proton-main 2 of 2
Expand Down

0 comments on commit b11fc35

Please sign in to comment.