2022-03-22 11:03:15 -04:00
|
|
|
cmake_minimum_required(VERSION 3.11)
|
|
|
|
project(coordinator LANGUAGES C VERSION 0.1.0)
|
|
|
|
|
|
|
|
enable_testing()
|
|
|
|
|
2022-04-05 09:12:20 -04:00
|
|
|
#
|
|
|
|
# core-os disk-mapper
|
|
|
|
#
|
2022-04-21 09:01:47 -04:00
|
|
|
add_custom_target(disk-mapper ALL
|
2022-05-23 04:35:14 -04:00
|
|
|
DOCKER_BUILDKIT=1 docker build -o ${CMAKE_BINARY_DIR} -f Dockerfile.build --target disk-mapper .
|
|
|
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
|
|
|
BYPRODUCTS disk-mapper
|
2022-04-05 09:12:20 -04:00
|
|
|
)
|
|
|
|
|
2022-03-22 11:03:15 -04:00
|
|
|
#
|
|
|
|
# coordinator
|
|
|
|
#
|
|
|
|
|
|
|
|
add_custom_target(coordinator ALL
|
2022-05-23 04:35:14 -04:00
|
|
|
DOCKER_BUILDKIT=1 docker build -o ${CMAKE_BINARY_DIR} --build-arg PROJECT_VERSION=${PROJECT_VERSION} -f Dockerfile.build --target coordinator .
|
|
|
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
|
|
|
BYPRODUCTS coordinator
|
|
|
|
)
|
2022-03-22 11:03:15 -04:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# cli
|
|
|
|
#
|
|
|
|
|
|
|
|
add_custom_target(cli ALL
|
2022-04-22 05:25:56 -04:00
|
|
|
CGO_ENABLED=0 go build -o ${CMAKE_BINARY_DIR}/constellation -buildvcs=false -tags=gcp -ldflags "-buildid='' -X github.com/edgelesssys/constellation/internal/constants.CliVersion=${PROJECT_VERSION}"
|
2022-05-23 04:35:14 -04:00
|
|
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/cli
|
|
|
|
BYPRODUCTS constellation
|
|
|
|
)
|
2022-03-22 11:03:15 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# testing / debugging
|
|
|
|
#
|
|
|
|
|
2022-05-23 04:35:14 -04:00
|
|
|
add_custom_target(debug_coordinator
|
2022-03-22 11:03:15 -04:00
|
|
|
go build -o ${CMAKE_BINARY_DIR}/debug_coordinator -buildvcs=false -ldflags "-buildid='' -X main.version=${PROJECT_VERSION}"
|
2022-05-23 04:35:14 -04:00
|
|
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/coordinator/cmd/coordinator
|
|
|
|
BYPRODUCTS debug_coordinator
|
|
|
|
)
|
|
|
|
|
2022-03-22 11:03:15 -04:00
|
|
|
|
|
|
|
add_test(NAME unittest COMMAND go test -race -count=3 ./... WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
|
|
|
|
add_test(NAME integrationtest COMMAND go test -v -tags integration ./test/ WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
|
|
|
|
add_test(NAME etcd-unittest COMMAND go test -v --race -cover -count=3 -tags integration WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/coordinator/store/)
|