Skip to content

Commit

Permalink
Merge pull request #69 from szmyd/libc_no_prerelease
Browse files Browse the repository at this point in the history
Change all libc builds to PRERELEASE=False
  • Loading branch information
szmyd authored Dec 13, 2022
2 parents d615530 + cfee29b commit 0f889a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,11 @@ pipeline {
BUILD_PROFILE = "debug"
}

if ("${BUILD_TYPE}" == "release") {
if ("${ALLOC}" == 'libc') {
PRERELEASE = 'False'
if ("${ALLOC}" != 'libc') {
} else {
if ("${BUILD_TYPE}" == "release") {
PRERELEASE = 'False'
BUILD_PROFILE = "test"
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/cache/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ target_sources(test_range_hashmap PRIVATE
)
target_include_directories(test_range_hashmap BEFORE PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
target_link_libraries(test_range_hashmap sisl ${COMMON_DEPS} Folly::Folly GTest::gtest)
add_test(NAME RangeHashMap COMMAND test_range_hashmap --num_iters 10000)
#add_test(NAME RangeHashMap COMMAND test_range_hashmap --num_iters 10000)

add_executable(test_range_cache)
target_sources(test_range_cache PRIVATE
Expand Down

0 comments on commit 0f889a9

Please sign in to comment.