-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
35 lines (34 loc) · 840 Bytes
/
.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
# blocklist
branches:
only: master
dist: xenial
language: python
cache: pip
python:
- '3.7'
install:
- pip3 install -r requirements.txt
script:
- make
# deploy:
# provider: releases
# api_key: $TOKEN
# file: assignment2/2_RegularizationTut_STUDENT.ipynb
# skip_cleanup: true
# draft: true
# on:
# branch: test/jupytext
# after_success:
# - git config --global user.email ${EMAIL}
# - git config --global user.name ${USER}
# - git checkout build
# - git add *.ipynb
# - "git commit --message \"[skip travis] Travis build: ${TRAVIS_BUILD_NUMBER}\""
# - git remote add origin-pages https://${TOKEN}@github.com/sirexeclp/ml-in-prec-med.git > /dev/null 2>&1
# - git push --quiet --set-upstream origin-pages build
deploy:
skip_cleanup: true
provider: script
script: bash deploy.sh
on:
branch: master