Commit b582166 1 parent 3340938 commit b582166 Copy full SHA for b582166
File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,8 @@ jobs:
114
114
115
115
- name : Comprehensive CMake example
116
116
shell : bash
117
+ env :
118
+ EXTRA_CMAKE_INSTALL : " --config=Debug"
117
119
run : |
118
120
cd examples/cmake-scenarios
119
121
./build.sh
Original file line number Diff line number Diff line change 19
19
20
20
set -exuo pipefail
21
21
22
- export CMAKE_CONFIGURATION_TYPES=" Release;Debug"
23
-
24
22
# Build nanoarrow statically.
25
23
cmake -S ../.. -B scratch/nanoarrow_build/ \
26
24
-DCMAKE_INSTALL_PREFIX=scratch/nanoarrow_install/ \
27
25
-DNANOARROW_IPC=ON -DNANOARROW_DEVICE=ON -DNANOARROW_TESTING=ON
28
26
cmake --build scratch/nanoarrow_build/
29
- cmake --install scratch/nanoarrow_build/
27
+ cmake --install scratch/nanoarrow_build/ $EXTRA_CMAKE_INSTALL
30
28
31
29
for nanoarrow_build_type in static shared; do
32
30
# Build the project against the built nanoarrow.
You can’t perform that action at this time.
0 commit comments