This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 288
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #499 from EOSIO/larryk85-patch-1
Added Integration Tests to Buildkite Pipeline
- Loading branch information
Showing
6 changed files
with
54 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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 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 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 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,10 @@ | ||
{ | ||
"eosio-dot-cdt": | ||
{ | ||
"pipeline-branch": "master", | ||
"dependencies": // dependencies to pull for cdt integration tests, by branch, tag, or commit hash | ||
{ | ||
"eosio": "release/1.7.x" | ||
} | ||
} | ||
} |
This file contains 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 |
---|---|---|
@@ -1,17 +1,43 @@ | ||
find_program(SCCACHE_FOUND sccache) | ||
if (SCCACHE_FOUND) | ||
message(STATUS "Using sccache") | ||
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE sccache) | ||
else() | ||
find_program(CCACHE_FOUND ccache) | ||
if (CCACHE_FOUND) | ||
message(STATUS "Using ccache") | ||
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache) | ||
endif() | ||
endif() | ||
|
||
add_test( asset_tests ${CMAKE_BINARY_DIR}/tests/unit/asset_tests ) | ||
set_property(TEST asset_tests PROPERTY LABELS unit_tests) | ||
add_test( binary_extension_tests ${CMAKE_BINARY_DIR}/tests/unit/binary_extension_tests ) | ||
set_property(TEST binary_extension_tests PROPERTY LABELS unit_tests) | ||
add_test( crypto_tests ${CMAKE_BINARY_DIR}/tests/unit/crypto_tests ) | ||
set_property(TEST crypto_tests PROPERTY LABELS unit_tests) | ||
add_test( datastream_tests ${CMAKE_BINARY_DIR}/tests/unit/datastream_tests ) | ||
set_property(TEST datastream_tests PROPERTY LABELS unit_tests) | ||
add_test( fixed_bytes_tests ${CMAKE_BINARY_DIR}/tests/unit/fixed_bytes_tests ) | ||
set_property(TEST fixed_bytes_tests PROPERTY LABELS unit_tests) | ||
add_test( name_tests ${CMAKE_BINARY_DIR}/tests/unit/name_tests ) | ||
set_property(TEST name_tests PROPERTY LABELS unit_tests) | ||
add_test( rope_tests ${CMAKE_BINARY_DIR}/tests/unit/rope_tests ) | ||
set_property(TEST rope_tests PROPERTY LABELS unit_tests) | ||
add_test( print_tests ${CMAKE_BINARY_DIR}/tests/unit/print_tests ) | ||
set_property(TEST print_tests PROPERTY LABELS unit_tests) | ||
add_test( serialize_tests ${CMAKE_BINARY_DIR}/tests/unit/serialize_tests ) | ||
set_property(TEST serialize_tests PROPERTY LABELS unit_tests) | ||
add_test( symbol_tests ${CMAKE_BINARY_DIR}/tests/unit/symbol_tests ) | ||
set_property(TEST symbol_tests PROPERTY LABELS unit_tests) | ||
add_test( system_tests ${CMAKE_BINARY_DIR}/tests/unit/system_tests ) | ||
set_property(TEST system_tests PROPERTY LABELS unit_tests) | ||
add_test( time_tests ${CMAKE_BINARY_DIR}/tests/unit/time_tests ) | ||
set_property(TEST time_tests PROPERTY LABELS unit_tests) | ||
add_test( varint_tests ${CMAKE_BINARY_DIR}/tests/unit/varint_tests ) | ||
set_property(TEST varint_tests PROPERTY LABELS unit_tests) | ||
|
||
if (eosio_FOUND AND EOSIO_RUN_INTEGRATION_TESTS) | ||
add_test(integration_tests ${CMAKE_BINARY_DIR}/tests/integration/integration_tests) | ||
endif() | ||
set_property(TEST integration_tests PROPERTY LABELS integration_tests) | ||
endif() |
This file contains 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