Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
9b671325
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
9b671325
编写于
4月 06, 2022
作者:
sangshuduo
提交者:
GitHub
4月 06, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-14512]<fix>: remove spare CI config (#11251)
上级
11ae60e0
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
0 addition
and
277 deletion
+0
-277
.circleci/config.yml
.circleci/config.yml
+0
-13
.drone.yml
.drone.yml
+0
-264
未找到文件。
.circleci/config.yml
已删除
100644 → 0
浏览文件 @
11ae60e0
# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
version
:
2.1
# Use a package of configuration called an orb.
orbs
:
# Declare a dependency on the welcome-orb
welcome
:
circleci/welcome-orb@0.4.1
# Orchestrate or schedule a set of jobs
workflows
:
# Name the workflow "welcome"
welcome
:
# Run the welcome/run job in its own container
jobs
:
-
welcome/run
.drone.yml
已删除
100644 → 0
浏览文件 @
11ae60e0
---
kind
:
pipeline
name
:
test_arm64_bionic
platform
:
os
:
linux
arch
:
arm64
steps
:
-
name
:
build
image
:
arm64v8/ubuntu:bionic
commands
:
-
apt-get update
-
apt-get install -y cmake git build-essential wget
-
wget https://dl.google.com/go/go1.16.9.linux-arm64.tar.gz
-
tar -C /usr/local -xzf go1.16.9.linux-arm64.tar.gz
-
export PATH=$PATH:/usr/local/go/bin
-
git submodule update --init --recursive
-
mkdir debug
-
cd debug
-
cmake .. -DCPUTYPE=aarch64 > /dev/null
-
make -j4
trigger
:
event
:
-
pull_request
when
:
branch
:
-
develop
-
master
-
2.0
---
kind
:
pipeline
name
:
test_arm64_focal
platform
:
os
:
linux
arch
:
arm64
steps
:
-
name
:
build
image
:
arm64v8/ubuntu:focal
commands
:
-
echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
-
apt-get update
-
apt-get install -y -qq git cmake build-essential wget
-
wget https://dl.google.com/go/go1.16.9.linux-arm64.tar.gz
-
tar -C /usr/local -xzf go1.16.9.linux-arm64.tar.gz
-
export PATH=$PATH:/usr/local/go/bin
-
git submodule update --init --recursive
-
mkdir debug
-
cd debug
-
cmake .. -DCPUTYPE=aarch64 > /dev/null
-
make -j4
trigger
:
event
:
-
pull_request
when
:
branch
:
-
develop
-
master
-
2.0
---
kind
:
pipeline
name
:
test_arm64_centos7
platform
:
os
:
linux
arch
:
arm64
steps
:
-
name
:
build
image
:
arm64v8/centos:7
commands
:
-
yum install -y epel-release
-
yum install -y gcc gcc-c++ make cmake3 wget git
-
wget https://dl.google.com/go/go1.16.9.linux-arm64.tar.gz
-
tar -C /usr/local -xzf go1.16.9.linux-arm64.tar.gz
-
export PATH=$PATH:/usr/local/go/bin
-
ln -s /usr/bin/cmake3 /usr/bin/cmake
-
go version
-
git submodule update --init --recursive
-
mkdir debug
-
cd debug
-
cmake3 .. -DCPUTYPE=aarch64 > /dev/null
-
make -j4
trigger
:
event
:
-
pull_request
when
:
branch
:
-
develop
-
master
-
2.0
---
kind
:
pipeline
name
:
test_arm64_centos8
platform
:
os
:
linux
arch
:
arm64
steps
:
-
name
:
build
image
:
arm64v8/centos:8
commands
:
-
dnf install -y gcc gcc-c++ make cmake epel-release git libarchive golang
-
git submodule update --init --recursive
-
mkdir debug
-
cd debug
-
cmake .. -DCPUTYPE=aarch64 > /dev/null
-
make -j4
trigger
:
event
:
-
pull_request
when
:
branch
:
-
develop
-
master
-
2.0
---
kind
:
pipeline
name
:
test_arm_bionic
platform
:
os
:
linux
arch
:
arm
steps
:
-
name
:
build
image
:
arm32v7/ubuntu:bionic
commands
:
-
apt-get update
-
apt-get install -y cmake build-essential golang-go git
-
git submodule update --init --recursive
-
mkdir debug
-
cd debug
-
cmake .. -DCPUTYPE=aarch32 > /dev/null
-
make -j4
trigger
:
event
:
-
pull_request
when
:
branch
:
-
develop
-
master
-
2.0
---
kind
:
pipeline
name
:
build_trusty
platform
:
os
:
linux
arch
:
amd64
steps
:
-
name
:
build
image
:
ubuntu:trusty
commands
:
-
apt-get update
-
apt-get install -y gcc cmake3 build-essential git binutils-2.26 wget
-
wget https://dl.google.com/go/go1.16.9.linux-amd64.tar.gz
-
tar -C /usr/local -xzf go1.16.9.linux-amd64.tar.gz
-
export PATH=$PATH:/usr/local/go/bin
-
git submodule update --init --recursive
-
mkdir debug
-
cd debug
-
cmake ..
-
make -j4
trigger
:
event
:
-
pull_request
when
:
branch
:
-
develop
-
master
-
2.0
---
kind
:
pipeline
name
:
build_xenial
platform
:
os
:
linux
arch
:
amd64
steps
:
-
name
:
build
image
:
ubuntu:xenial
commands
:
-
apt-get update
-
apt-get install -y gcc cmake build-essential git wget
-
wget https://dl.google.com/go/go1.16.9.linux-amd64.tar.gz
-
tar -C /usr/local -xzf go1.16.9.linux-amd64.tar.gz
-
export PATH=$PATH:/usr/local/go/bin
-
git submodule update --init --recursive
-
mkdir debug
-
cd debug
-
cmake ..
-
make -j4
trigger
:
event
:
-
pull_request
when
:
branch
:
-
develop
-
master
-
2.0
---
kind
:
pipeline
name
:
build_bionic
platform
:
os
:
linux
arch
:
amd64
steps
:
-
name
:
build
image
:
ubuntu:bionic
commands
:
-
apt-get update
-
apt-get install -y gcc cmake build-essential git wget
-
wget https://dl.google.com/go/go1.16.9.linux-amd64.tar.gz
-
tar -C /usr/local -xzf go1.16.9.linux-amd64.tar.gz
-
export PATH=$PATH:/usr/local/go/bin
-
git submodule update --init --recursive
-
mkdir debug
-
cd debug
-
cmake ..
-
make -j4
trigger
:
event
:
-
pull_request
when
:
branch
:
-
develop
-
master
-
2.0
---
kind
:
pipeline
name
:
build_centos7
platform
:
os
:
linux
arch
:
amd64
steps
:
-
name
:
build
image
:
ansible/centos7-ansible
commands
:
-
yum install -y epel-release
-
yum install -y gcc gcc-c++ make cmake3 wget git
-
wget https://dl.google.com/go/go1.16.9.linux-amd64.tar.gz
-
tar -C /usr/local -xzf go1.16.9.linux-amd64.tar.gz
-
export PATH=$PATH:/usr/local/go/bin
-
ln -s /usr/bin/cmake3 /usr/bin/cmake
-
git submodule update --init --recursive
-
mkdir debug
-
cd debug
-
cmake3 ..
-
make -j4
trigger
:
event
:
-
pull_request
when
:
branch
:
-
develop
-
master
-
2.0
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录