This commit is contained in:
liuyq-617 2021-05-06 16:49:11 +08:00
parent 0056a7f39e
commit 828628ab2e
1 changed files with 5 additions and 15 deletions

View File

@ -7,20 +7,6 @@ platform:
arch: amd64 arch: amd64
steps: steps:
- name: build
image: gcc
commands:
- apt-get update
- apt-get install -y cmake build-essential
- mkdir debug
- cd debug
- cmake ..
- make
when:
branch:
- develop
- master
- name: smoke_test - name: smoke_test
image: python:3.8 image: python:3.8
commands: commands:
@ -29,7 +15,11 @@ steps:
- pip3 install psutil - pip3 install psutil
- pip3 install guppy3 - pip3 install guppy3
- pip3 install src/connector/python/linux/python3/ - pip3 install src/connector/python/linux/python3/
- cd tests - mkdir debug
- cd debug
- cmake ..
- make
- cd ../tests
- ./test-all.sh smoke - ./test-all.sh smoke
when: when:
branch: branch: