mirror of https://github.com/openXC7/prjxray.git
rm .travis.yml (#1938)
Signed-off-by: Unai Martinez-Corral <umartinezcorral@antmicro.com>
This commit is contained in:
parent
9733e8a6d7
commit
34fd023357
|
|
@ -3,6 +3,6 @@ parts-fuzzers: ["fuzzers"]
|
|||
parts-minitests: ["minitests"]
|
||||
parts-experiments: ["experiments"]
|
||||
parts-docs: ["docs", "*.md", "COPYING"]
|
||||
parts-infra: [".travis.yml", ".github", ".style.yapf", "vagrant", "download-latest-db.sh"]
|
||||
parts-infra: [".github", ".style.yapf", "vagrant", "download-latest-db.sh"]
|
||||
parts-tools: ["tools", "utils", "htmlgen"]
|
||||
parts-third-party: ["third_party", ".gitmodules"]
|
||||
|
|
|
|||
39
.travis.yml
39
.travis.yml
|
|
@ -1,39 +0,0 @@
|
|||
os: linux
|
||||
dist: trusty
|
||||
language: python
|
||||
python: 3.6
|
||||
addons:
|
||||
apt:
|
||||
sources:
|
||||
- ubuntu-toolchain-r-test
|
||||
- llvm-toolchain-trusty-5.0
|
||||
packages:
|
||||
- clang-format-5.0
|
||||
- g++-6
|
||||
- xsltproc
|
||||
|
||||
install:
|
||||
- export CC=gcc-6
|
||||
- export CXX=g++-6
|
||||
- make env
|
||||
|
||||
|
||||
jobs:
|
||||
include:
|
||||
# State 1 - Tests
|
||||
- stage: "Tests"
|
||||
name: "C++ Tests"
|
||||
script: make test-cpp
|
||||
|
||||
- name: "Python Tests"
|
||||
script: make test-py
|
||||
|
||||
- name: "Format"
|
||||
script:
|
||||
- make format
|
||||
- test $(git status --porcelain | wc -l) -eq 0 || { git diff; false; }
|
||||
|
||||
- name: "License Checks"
|
||||
script:
|
||||
- ./.github/check_license.sh
|
||||
- ./.github/check_python_scripts.sh
|
||||
Loading…
Reference in New Issue