File tree 3 files changed +7
-12
lines changed
3 files changed +7
-12
lines changed Original file line number Diff line number Diff line change 1
- github :
2
- prebuilds :
3
- master : false
4
- branches : false
5
- tasks :
6
- - name : install dependencies
7
- init : |
8
- sudo apt install cmake flex bison texinfo libreadline-dev -y
9
- sudo bash build.sh init
10
- echo -e "\033[32m\nDependency installed successfully\033[0m"
1
+ coreDump :
2
+ enabled : true
3
+ image : oceanbase/miniob:latest
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ MESSAGE(STATUS "This is Project source dir " ${PROJECT_SOURCE_DIR})
7
7
MESSAGE (STATUS "This is PROJECT_BINARY_DIR dir " ${PROJECT_BINARY_DIR} )
8
8
9
9
SET (EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR} /bin)
10
- SET (CMAKE_PREFIX_PATH "${CMAKE_PREFIX_PATH} ; ${ PROJECT_SOURCE_DIR} /deps/3rd/usr/local" )
10
+ SET (CMAKE_PREFIX_PATH "${PROJECT_SOURCE_DIR} /deps/3rd/usr/local;/usr/local; ${CMAKE_PREFIX_PATH} " )
11
11
SET (CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR} /cmake)
12
12
13
13
# 设置默认构建类型为 Debug
Original file line number Diff line number Diff line change @@ -24,7 +24,9 @@ RUN apt-get update \
24
24
25
25
RUN apt-get install -y openssh-server
26
26
27
- RUN git clone https://github.com/oceanbase/miniob /tmp/miniob \
27
+ # Try cloning from GitHub, if it fails, use cnpmjs.org mirror
28
+ RUN git clone https://github.com/oceanbase/miniob /tmp/miniob || \
29
+ git clone https://githubfast.com/oceanbase/miniob /tmp/miniob \
28
30
&& cd /tmp/miniob \
29
31
&& THIRD_PARTY_INSTALL_PREFIX=/usr/local bash build.sh init \
30
32
&& mkdir -p /root/docker/bin \
You can’t perform that action at this time.
0 commit comments