Merge pull request #4852 from taosdata/hotfix/sangshuduo/TD-2688-make-ci-use-binutils-2.26
[TD-2688] fix: make CI use gcc 4.8 and binutils 2.26 as minimal version toolchain requirements.
This commit is contained in:
commit
20b8d07909
11
.travis.yml
11
.travis.yml
|
@ -146,7 +146,7 @@ matrix:
|
||||||
branch_pattern: coverity_scan
|
branch_pattern: coverity_scan
|
||||||
|
|
||||||
- os: linux
|
- os: linux
|
||||||
dist: xenial
|
dist: trusty
|
||||||
language: c
|
language: c
|
||||||
git:
|
git:
|
||||||
- depth: 1
|
- depth: 1
|
||||||
|
@ -156,8 +156,9 @@ matrix:
|
||||||
packages:
|
packages:
|
||||||
- build-essential
|
- build-essential
|
||||||
- cmake
|
- cmake
|
||||||
|
- binutils-2.26
|
||||||
env:
|
env:
|
||||||
- DESC="xenial build"
|
- DESC="trusty/gcc-4.8/bintuils-2.26 build"
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- export TZ=Asia/Harbin
|
- export TZ=Asia/Harbin
|
||||||
|
@ -168,7 +169,7 @@ matrix:
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- cmake .. > /dev/null
|
- cmake .. > /dev/null
|
||||||
- make
|
- export PATH=/usr/lib/binutils-2.26/bin:$PATH && make
|
||||||
|
|
||||||
- os: linux
|
- os: linux
|
||||||
dist: bionic
|
dist: bionic
|
||||||
|
@ -200,7 +201,7 @@ matrix:
|
||||||
dist: bionic
|
dist: bionic
|
||||||
language: c
|
language: c
|
||||||
compiler: clang
|
compiler: clang
|
||||||
env: DESC="linux/clang build"
|
env: DESC="arm64 linux/clang build"
|
||||||
git:
|
git:
|
||||||
- depth: 1
|
- depth: 1
|
||||||
|
|
||||||
|
@ -238,7 +239,7 @@ matrix:
|
||||||
- build-essential
|
- build-essential
|
||||||
- cmake
|
- cmake
|
||||||
env:
|
env:
|
||||||
- DESC="xenial build"
|
- DESC="arm64 xenial build"
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- export TZ=Asia/Harbin
|
- export TZ=Asia/Harbin
|
||||||
|
|
|
@ -33,11 +33,17 @@ To build TDengine, use [CMake](https://cmake.org/) 3.5 or higher versions in the
|
||||||
|
|
||||||
## Install tools
|
## Install tools
|
||||||
|
|
||||||
### Ubuntu & Debian:
|
### Ubuntu 16.04 and above & Debian:
|
||||||
```bash
|
```bash
|
||||||
sudo apt-get install -y gcc cmake build-essential git
|
sudo apt-get install -y gcc cmake build-essential git
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Ubuntu 14.04:
|
||||||
|
```bash
|
||||||
|
sudo apt-get install -y gcc cmake3 build-essential git binutils-2.26
|
||||||
|
export PATH=/usr/lib/binutils-2.26/bin:$PATH
|
||||||
|
```
|
||||||
|
|
||||||
To compile and package the JDBC driver source code, you should have a Java jdk-8 or higher and Apache Maven 2.7 or higher installed.
|
To compile and package the JDBC driver source code, you should have a Java jdk-8 or higher and Apache Maven 2.7 or higher installed.
|
||||||
To install openjdk-8:
|
To install openjdk-8:
|
||||||
```bash
|
```bash
|
||||||
|
|
Loading…
Reference in New Issue