-
Notifications
You must be signed in to change notification settings - Fork 54
/
.travis.yml
61 lines (57 loc) · 2.19 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
# Copyright 2021 The MLX Contributors
#
# SPDX-License-Identifier: Apache-2.0
language: python
python: 3.6
install: pip install flake8
branches:
only:
- main
services:
- docker
jobs:
include:
- name: "UI Build"
stage: test
env:
- DIFF_DETECTED_ERR_CODE=169
- DIFF_DIR=dashboard/origin-mlx
before_script: &0
# 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/machine-learning-exchange/mlx.git
- git fetch upstream
- ./tools/bash/check_diff.sh ; EXIT_CODE=$?
- |
if [ "$TRAVIS_EVENT_TYPE" != "cron" ]; then
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
fi
- echo "Changes detected - continue running job"
script:
- cd dashboard/origin-mlx && docker build -t mlexchange/mlx-ui:nightly-origin-$TRAVIS_BRANCH . && cd ..
- docker images
- if [ "$TRAVIS_EVENT_TYPE" == "cron" ]; then docker login -u $username -p $password && docker push mlexchange/mlx-ui:nightly-origin-$TRAVIS_BRANCH; fi
- name: "API Build"
env:
- DIFF_DETECTED_ERR_CODE=169
- DIFF_DIR=api/server
before_script: *0
script:
- cd api/server && docker build -t mlexchange/mlx-api:nightly-$TRAVIS_BRANCH . && cd ../..
- docker images
- if [ "$TRAVIS_EVENT_TYPE" == "cron" ]; then docker login -u $username -p $password && docker push mlexchange/mlx-api:nightly-$TRAVIS_BRANCH; fi
- name: "Python flake8 check"
script:
- flake8 . --count --exclude=./api/server/swagger_server/code_templates --select=E9,F63,F7,F82 --show-source --statistics
- name: "Check license headers"
script:
- make check_license
notifications:
email: false