forked from kubeflow/kfp-tekton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
95 lines (94 loc) · 3.1 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Copyright 2020 kubeflow.org
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
matrix:
include:
- name: "Unit tests, Python 3.6"
language: python
python: "3.6"
env: TOXENV=py36
install: &0
- python3 -m pip install -e sdk/python
script: &1
- VENV=$VIRTUAL_ENV make unit_test
- name: "Unit tests, Python 3.7"
language: python
python: "3.7"
env: TOXENV=py37
install: *0
script: *1
- name: "Unit tests, Python 3.8"
language: python
python: "3.8"
env: TOXENV=py38
install: *0
script: *1
- name: "Progress report on compiling KFP DSL test scripts"
language: python
python: "3.7"
install: *0
script:
- VENV=$VIRTUAL_ENV make report
- name: "Lint Python code with flake8"
language: python
python: "3.7"
script:
- VENV=$VIRTUAL_ENV make lint
- name: "Verify source files contain the license header"
language: bash
script:
- make check_license
- name: "Verify Markdown files have current table of contents"
language: bash
script:
- make check_mdtoc
- name: "Verify Markdown files have valid links"
language: python
python: "3.7"
install:
- python3 -m pip install requests
script:
- make check_doc_links
- name: "Verify apiserver, agent, and workflow build"
language: go
go: 1.15.x
script:
- make build-backend
- name: "run go unit tests"
language: go
go: 1.15.x
script:
- make run-go-unittests
- name: "Verify api-server, persistenceagent, metadata-writer, and scheduledworkflow docker build"
services: docker
env:
- DOCKER_REGISTRY=fake_registry
- DIFF_DETECTED_ERR_CODE=169
before_script:
# No diff detected: terminate job with success i.e. travis_terminate 0
# Script throws unexpected error: fail job with error code
# Diff detected: continue/run this job
- git remote add upstream https://github.com/kubeflow/kfp-tekton.git
- git fetch upstream
- ./scripts/check_diff.sh ; EXIT_CODE=$?
- |
if [ $EXIT_CODE -eq 0 ]; then
echo "No changes detected - skipping job."
travis_terminate 0
elif [ $EXIT_CODE -ne $DIFF_DETECTED_ERR_CODE ]; then
echo "Unexpected error in check_diff.sh - failing job."
travis_terminate $EXIT_CODE
fi
- echo "Changes detected - continue running job"
script:
- make build-backend-images