Skip to content

Commit 78982e7

Browse files
committed
fix gitpod bug
1 parent 7c0137f commit 78982e7

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

.gitpod.yml

+3-10
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
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

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ MESSAGE(STATUS "This is Project source dir " ${PROJECT_SOURCE_DIR})
77
MESSAGE(STATUS "This is PROJECT_BINARY_DIR dir " ${PROJECT_BINARY_DIR})
88

99
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}")
1111
SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake)
1212

1313
# 设置默认构建类型为 Debug

0 commit comments

Comments
 (0)