Skip to content

Commit

Permalink
fix gitpod bug
Browse files Browse the repository at this point in the history
  • Loading branch information
hnwyllmm committed Nov 15, 2024
1 parent 7c0137f commit 78982e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
13 changes: 3 additions & 10 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
github:
prebuilds:
master: false
branches: false
tasks:
- name: install dependencies
init: |
sudo apt install cmake flex bison texinfo libreadline-dev -y
sudo bash build.sh init
echo -e "\033[32m\nDependency installed successfully\033[0m"
coreDump:
enabled: true
image: oceanbase/miniob:latest
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ MESSAGE(STATUS "This is Project source dir " ${PROJECT_SOURCE_DIR})
MESSAGE(STATUS "This is PROJECT_BINARY_DIR dir " ${PROJECT_BINARY_DIR})

SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
SET(CMAKE_PREFIX_PATH "${CMAKE_PREFIX_PATH};${PROJECT_SOURCE_DIR}/deps/3rd/usr/local")
SET(CMAKE_PREFIX_PATH "${PROJECT_SOURCE_DIR}/deps/3rd/usr/local;/usr/local;${CMAKE_PREFIX_PATH}")
SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake)

# 设置默认构建类型为 Debug
Expand Down

0 comments on commit 78982e7

Please sign in to comment.