-
Notifications
You must be signed in to change notification settings - Fork 35
[WIP] Docker in the nightly testing #1033
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
Closed
Closed
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
143f4a2
Docker in the nightly testing
rbanka1 46b60fb
Try to fix bad substitution error
rbanka1 726fd23
Merge branch 'main' into addDocker
rbanka1 81abd42
Try to fix bad substitution error V2
rbanka1 0d602d9
Try to fix bad substitution error V2.2
rbanka1 bfb7e5e
Merge branch 'oneapi-src:main' into addDocker
rbanka1 ede9ec5
install hwloc
rbanka1 b565cd3
,
rbanka1 69bde86
Merge branch 'main' into addDocker
rbanka1 888c185
working docker
rbanka1 b610766
add valgrind
rbanka1 8d27aea
..
rbanka1 3207e4c
Add FindVALGRIND.cmake
rbanka1 6f9ed9b
build-docker-BasicBuilds
rbanka1 c7053bf
build-docker-BasicBuilds
rbanka1 ae630ec
build-docker-BasicBuilds V2
rbanka1 a15b792
build-docker-BasicBuilds V2.2
rbanka1 10ab5cf
dockerHub test
rbanka1 cd042a6
dockerHub test
rbanka1 84f5db8
dockerHub test
rbanka1 5d68917
dockerHub test
rbanka1 233a67d
dockerHub test
rbanka1 1dc7cca
dockerHub test L&Win
rbanka1 8fd1ab1
Merge branch 'main' into addDocker
rbanka1 6fc641a
dockerHub test L&Win
rbanka1 e298464
dockerHub test L&Win
rbanka1 eef0189
dockerHub test L&Win
rbanka1 6246020
dockerHub test L&Win
rbanka1 75afc7b
dockerHub test L&Win
rbanka1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Copyright (C) 2025 Intel Corporation | ||
# Under the Apache License v2.0 with LLVM Exceptions. See LICENSE.TXT. | ||
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
|
||
if(NOT VALGRIND_ROOT AND DEFINED ENV{VALGRIND_ROOT}) | ||
set(VALGRIND_ROOT "$ENV{VALGRIND_ROOT}" CACHE PATH "Valgrind base directory location (optional, used for nonstandard installation paths)") | ||
mark_as_advanced(VALGRIND_ROOT) | ||
endif() | ||
|
||
# Search path for nonstandard locations | ||
if(VALGRIND_ROOT) | ||
set(Valgrind_INCLUDE_PATH PATHS "${VALGRIND_ROOT}/include" "${VALGRIND_ROOT}/valgrind/current/usr/include" NO_DEFAULT_PATH) | ||
set(Valgrind_BINARY_PATH PATHS "${VALGRIND_ROOT}/bin" NO_DEFAULT_PATH) | ||
endif() | ||
|
||
find_path(Valgrind_INCLUDE_DIR valgrind/memcheck.h HINTS ${Valgrind_INCLUDE_PATH}) | ||
find_program(Valgrind_EXECUTABLE NAMES valgrind PATH ${Valgrind_BINARY_PATH}) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(Valgrind DEFAULT_MSG Valgrind_INCLUDE_DIR Valgrind_EXECUTABLE) | ||
|
||
mark_as_advanced(Valgrind_INCLUDE_DIR Valgrind_EXECUTABLE) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should rather not downgrade packages, rather move them up