rm .travis.yml (#1938)

Signed-off-by: Unai Martinez-Corral <umartinezcorral@antmicro.com>
This commit is contained in:
Unai Martinez-Corral 2022-05-24 09:50:56 +02:00 committed by GitHub
parent 9733e8a6d7
commit 34fd023357
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 40 deletions

View File

@ -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"]

View File

@ -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