Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
a12334f8
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
a12334f8
编写于
10月 15, 2021
作者:
L
liuyq-617
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-10640]update jenkins & Drone for blm3
上级
1efbf48f
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
41 addition
and
10 deletion
+41
-10
.drone.yml
.drone.yml
+39
-9
Jenkinsfile
Jenkinsfile
+2
-1
未找到文件。
.drone.yml
浏览文件 @
a12334f8
...
...
@@ -33,11 +33,16 @@ platform:
os
:
linux
arch
:
arm64
steps
:
-
name
:
submodules
image
:
alpine/git
commands
:
-
git submodule init
-
git submodule update --recursive --remote
-
name
:
build
image
:
arm64v8/ubuntu:bionic
commands
:
-
apt-get update
-
apt-get install -y cmake build-essential
-
apt-get install -y cmake build-essential
golang-go
-
git submodule update --init --recursive
-
mkdir debug
-
cd debug
...
...
@@ -60,12 +65,17 @@ platform:
arch
:
arm64
steps
:
-
name
:
submodules
image
:
alpine/git
commands
:
-
git submodule init
-
git submodule update --recursive --remote
-
name
:
build
image
:
arm64v8/ubuntu:focal
commands
:
-
echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
-
apt-get update
-
apt-get install -y -qq cmake build-essential
-
apt-get install -y -qq cmake build-essential
golang-go
-
git submodule update --init --recursive
-
mkdir debug
-
cd debug
...
...
@@ -91,7 +101,7 @@ steps:
-
name
:
build
image
:
arm64v8/centos:7
commands
:
-
yum install -y gcc gcc-c++ make cmake git
-
yum install -y gcc gcc-c++ make cmake git
golang
-
git submodule update --init --recursive
-
mkdir debug
-
cd debug
...
...
@@ -117,7 +127,7 @@ steps:
-
name
:
build
image
:
arm64v8/centos:8
commands
:
-
dnf install -y gcc gcc-c++ make cmake epel-release git libarchive
-
dnf install -y gcc gcc-c++ make cmake epel-release git libarchive
golang
-
git submodule update --init --recursive
-
mkdir debug
-
cd debug
...
...
@@ -140,11 +150,16 @@ platform:
arch
:
arm
steps
:
-
name
:
submodules
image
:
alpine/git
commands
:
-
git submodule init
-
git submodule update --recursive --remote
-
name
:
build
image
:
arm32v7/ubuntu:bionic
commands
:
-
apt-get update
-
apt-get install -y cmake build-essential
-
apt-get install -y cmake build-essential
golang-go
-
git submodule update --init --recursive
-
mkdir debug
-
cd debug
...
...
@@ -171,7 +186,7 @@ steps:
image
:
ubuntu:trusty
commands
:
-
apt-get update
-
apt-get install -y gcc cmake3 build-essential git binutils-2.26
-
apt-get install -y gcc cmake3 build-essential git binutils-2.26
golang-go
-
git submodule update --init --recursive
-
mkdir debug
-
cd debug
...
...
@@ -194,11 +209,16 @@ platform:
arch
:
amd64
steps
:
-
name
:
submodules
image
:
alpine/git
commands
:
-
git submodule init
-
git submodule update --recursive --remote
-
name
:
build
image
:
ubuntu:xenial
commands
:
-
apt-get update
-
apt-get install -y gcc cmake build-essential
-
apt-get install -y gcc cmake build-essential
golang-go
-
git submodule update --init --recursive
-
mkdir debug
-
cd debug
...
...
@@ -220,11 +240,16 @@ platform:
arch
:
amd64
steps
:
-
name
:
submodules
image
:
alpine/git
commands
:
-
git submodule init
-
git submodule update --recursive --remote
-
name
:
build
image
:
ubuntu:bionic
commands
:
-
apt-get update
-
apt-get install -y gcc cmake build-essential
-
apt-get install -y gcc cmake build-essential
golang-go
-
git submodule update --init --recursive
-
mkdir debug
-
cd debug
...
...
@@ -246,10 +271,15 @@ platform:
arch
:
amd64
steps
:
-
name
:
submodules
image
:
alpine/git
commands
:
-
git submodule init
-
git submodule update --recursive --remote
-
name
:
build
image
:
ansible/centos7-ansible
commands
:
-
yum install -y gcc gcc-c++ make cmake
-
yum install -y gcc gcc-c++ make cmake
golang
-
git submodule update --init --recursive
-
mkdir debug
-
cd debug
...
...
Jenkinsfile
浏览文件 @
a12334f8
...
...
@@ -99,7 +99,7 @@ def pre_test(){
sh
'''
cd ${WK}
git pull >/dev/null
git submodule update --init --recursive
export TZ=Asia/Harbin
date
git clean -dfx
...
...
@@ -149,6 +149,7 @@ def pre_test_win(){
git fetch origin +refs/pull/%CHANGE_ID%/merge
git checkout -qf FETCH_HEAD
git clean -dfx
git submodule update --init --recursive
cd C:\\workspace\\TDinternal
git reset --hard HEAD~10
'''
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录