-
Notifications
You must be signed in to change notification settings - Fork 1.6k
[ci] Add minimal asan build #22618
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ci] Add minimal asan build #22618
Changes from all commits
a4d977d
0c3c87e
9231cb7
b48a0e0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| CMAKE_BUILD_TYPE=Debug | ||
| CMAKE_CXX_FLAGS_DEBUG="-Og -g" | ||
| asan=ON | ||
| ccache=ON | ||
| builtin_vdt=ON | ||
| fail-on-missing=ON | ||
| minimal=ON | ||
| roottest=ON | ||
| testing=ON | ||
| LSAN_OPTIONS=verbosity=1:log_threads=1 | ||
| ROOT_CTEST_CUSTOM_FLAGS="-E \(cppinterop-CppInterOpTest\|roottest-cling-specialobj-runf02$\|roottest-root-collection-DeleteWarning$\|roottest-root-io-evolution-fixarr2$\|roottest-root-meta-rlibmap$\|roottest-root-treeproxy-vectorint-vectorint$\)" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -156,8 +156,8 @@ | |
| HOME: /Users/sftnight | ||
| INCREMENTAL: ${{ !contains(github.event.pull_request.labels.*.name, 'clean build') && !matrix.platform == 'mac15' && !matrix.platform == 'mac26'}} | ||
| GITHUB_PR_ORIGIN: ${{ github.event.pull_request.head.repo.clone_url }} | ||
| OVERRIDES: ${{ join( matrix.overrides, ' ') }} | ||
| OVERRIDES: ${{ join( matrix.overrides, '@') }} | ||
| run: | | ||
|
Check failure on line 160 in .github/workflows/root-ci.yml
|
||
| [ -d "${VIRTUAL_ENV_DIR}" ] && source ${VIRTUAL_ENV_DIR}/bin/activate | ||
| echo "Python is now $(which python3) $(python3 --version)" | ||
| src/.github/workflows/root-ci-config/build_root.py \ | ||
|
|
@@ -170,7 +170,7 @@ | |
| --head_sha ${{ github.event.pull_request.head.sha }} \ | ||
| --repository ${{ github.server_url }}/${{ github.repository }} \ | ||
| --platform ${{ matrix.platform }} \ | ||
| --overrides ${GLOBAL_OVERRIDES} ${OVERRIDES} | ||
| --overrides "${GLOBAL_OVERRIDES}" "${OVERRIDES}" | ||
|
|
||
| - name: Workflow dispatch | ||
| if: ${{ github.event_name == 'workflow_dispatch' && !matrix.is_special }} | ||
|
|
@@ -287,7 +287,7 @@ | |
| INCREMENTAL: ${{ !contains(github.event.pull_request.labels.*.name, 'clean build') }} | ||
| GITHUB_PR_ORIGIN: ${{ github.event.pull_request.head.repo.clone_url }} | ||
| shell: cmd | ||
| run: "C:\\setenv.bat ${{ matrix.target_arch }} && | ||
|
Check failure on line 290 in .github/workflows/root-ci.yml
|
||
| python .github/workflows/root-ci-config/build_root.py | ||
| --buildtype ${{ matrix.config }} | ||
| --platform windows10 | ||
|
|
@@ -415,6 +415,12 @@ | |
| is_special: true | ||
| property: "clang Ninja builtins auto-registration off" | ||
| overrides: ["CMAKE_CXX_STANDARD=20"] | ||
| # Asan build | ||
| - image: alma10 | ||
| platform_config: alma10-minimal | ||
| is_special: true | ||
| property: "asan" | ||
| overrides: ["ROOT_CTEST_CUSTOM_FLAGS='-E \\(^tutorial-\\|cppinterop-CppInterOpTest\\|roottest-cling-specialobj-runf02$\\|roottest-root-collection-DeleteWarning$\\|roottest-root-io-evolution-fixarr2$\\|roottest-root-meta-rlibmap$\\|roottest-root-treeproxy-vectorint-vectorint$\\)'"] | ||
| # Fedora Rawhide with Python freethreading+debug build | ||
| - image: rawhide | ||
| python_venv: "/py-venv-3.15td/ROOT-CI" | ||
|
|
@@ -448,7 +454,7 @@ | |
| - self-hosted | ||
| - linux | ||
| - ${{ matrix.architecture == null && 'x64' || matrix.architecture }} | ||
| - ${{ matrix.extra-runs-on == null && 'cpu' || matrix.extra-runs-on }} | ||
|
Check failure on line 457 in .github/workflows/root-ci.yml
|
||
|
|
||
| name: | | ||
| ${{ matrix.image }} ${{ matrix.property }} | ||
|
|
@@ -515,7 +521,7 @@ | |
| INCREMENTAL: ${{ !contains(github.event.pull_request.labels.*.name, 'clean build') }} | ||
| GITHUB_PR_ORIGIN: ${{ github.event.pull_request.head.repo.clone_url }} | ||
| OVERRIDES: ${{ join( matrix.overrides, ' ') }} | ||
| run: ".github/workflows/root-ci-config/build_root.py | ||
|
Check failure on line 524 in .github/workflows/root-ci.yml
|
||
| --buildtype RelWithDebInfo | ||
| --platform ${{ matrix.image }} | ||
| --platform_config ${{ matrix.platform_config }} | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.