File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ jobs:
195
195
- name : Configure CMake
196
196
run : >-
197
197
export PATH=/usr/bin:$(cygpath ${SYSTEMROOT})/system32 &&
198
- cmake . -B build -DCMAKE_C_FLAGS="-Wall -Wextra -Werror -pedantic " -DCMAKE_CXX_FLAGS="-Wall -Wextra -Werror -pedantic " -DDEP_INSTALL_PREFIX="/usr/local" -DDEP_BUILD_THREADS=2 -DDEP_USE_JEMALLOC=Off
198
+ cmake . -B build -DCMAKE_C_FLAGS="-Wall -Wextra -Werror -Wpedantic " -DCMAKE_CXX_FLAGS="-Wall -Wextra -Werror -Wpedantic " -DDEP_INSTALL_PREFIX="/usr/local" -DDEP_BUILD_THREADS=2 -DDEP_USE_JEMALLOC=Off
199
199
shell : " C:\\ cygwin\\ bin\\ bash.exe -o igncr -eo pipefail {0}"
200
200
201
201
- name : Build
@@ -207,6 +207,6 @@ jobs:
207
207
- name : Test
208
208
# https://cygwin.com/pipermail/cygwin/2005-May/133368.html
209
209
run : >-
210
- export PATH=/usr/bin:/usr/local/sqlite3-pcre: $(cygpath ${SYSTEMROOT})/system32 &&
210
+ export PATH=$(cygpath ${SYSTEMROOT})/system32 &&
211
211
ctest --output-on-failure --test-dir build
212
212
shell : " C:\\ cygwin\\ bin\\ bash.exe -o igncr -eo pipefail {0}"
Original file line number Diff line number Diff line change 62
62
63
63
64
64
# source this file instead of using it as a command to only check OS once
65
+ case " @CMAKE_SYSTEM_NAME@" in
66
+ " CYGWIN" )
67
+ export PATH=" @DEP_INSTALL_PREFIX@/sqlite3-pcre:${PATH} "
68
+ ;;
69
+ esac
70
+
65
71
# shellcheck disable=SC2034,SC2194,SC2215
66
72
case " @CMAKE_SYSTEM_NAME@" in
67
73
" APPLE" | " Darwin" )
You can’t perform that action at this time.
0 commit comments