Skip to content

Commit f634a8a

Browse files
authored
Merge pull request #282 from muzarski/ci-build-release
ci: build in release
2 parents 7916cc0 + 3b83942 commit f634a8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ build-integration-test-bin:
147147
echo "Building integration test binary to ${INTEGRATION_TEST_BIN}";\
148148
mkdir "${BUILD_DIR}" >/dev/null 2>&1 || true;\
149149
cd "${BUILD_DIR}";\
150-
cmake -DCASS_BUILD_INTEGRATION_TESTS=ON .. && (make -j 4 || make);\
150+
cmake -DCASS_BUILD_INTEGRATION_TESTS=ON -DCMAKE_BUILD_TYPE=Release .. && (make -j 4 || make);\
151151
}
152152

153153
build-integration-test-bin-if-missing:
@@ -156,7 +156,7 @@ build-integration-test-bin-if-missing:
156156
echo "Integration test binary not found at ${INTEGRATION_TEST_BIN}, building it";\
157157
mkdir "${BUILD_DIR}" >/dev/null 2>&1 || true;\
158158
cd "${BUILD_DIR}";\
159-
cmake -DCASS_BUILD_INTEGRATION_TESTS=ON .. && (make -j 4 || make);\
159+
cmake -DCASS_BUILD_INTEGRATION_TESTS=ON -DCMAKE_BUILD_TYPE=Release .. && (make -j 4 || make);\
160160
}
161161

162162
_update-rust-tooling:

0 commit comments

Comments
 (0)