-
Notifications
You must be signed in to change notification settings - Fork 23
/
.travis.yml
40 lines (40 loc) · 1.01 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
jobs:
include:
# - stage: test
# language: python
# python: '3.7'
# dist: 'xenial'
# install:
# - pip install codecov
# - python setup.py install
# - pip install -e .[dev]
# script: dispatch-admin coverage
# after_success: codecov
- language: node_js
node_js: 8
install:
- cd dispatch/static/manager
- npm install
script: npm run-script build
- stage: deploy
language: python
python: '3.7'
dist: 'xenial'
before_install:
- nvm install 8
- nvm use 8
install:
- cd dispatch/static/manager
- npm install --force
- npm run-script build
- rm -rf node_modules
- cd ../../../
script: python setup.py sdist
deploy:
provider: pypi
user: ubyssey
skip_cleanup: true
password:
secure: LJUK9lcTt3uTGpCbJTXFQSUg4YP6R+Rrj3MelmIwjhFUBgQDRje9KynxE9z93BEZ9S3sohHbmHdlKLJsAfTb6aeA49Edl+f2oUGJYt+WbIUnxtL7El5IHOqx4IB3MP4X46M/amBSBS1L4JTWACbHICk1XI3FA+7JDGLJLR721qE=
on:
tags: true