Skip to content

Commit 4c34a4d

Browse files
committed
Update travis script.
1 parent b8290aa commit 4c34a4d

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.travis.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
language: node_js
22
node_js:
3-
- '5'
3+
- '12'
44
sudo: false
55
notifications:
66
email: false
77
before_install:
8-
- cd ..
9-
- git clone --depth=50 --branch=master https://github.com/jupyterlab/jupyterlab.git
10-
- cd jupyterlab
8+
- wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O ~/miniconda.sh;
9+
- bash ~/miniconda.sh -b -p $HOME/miniconda
10+
- export PATH="$HOME/miniconda/bin:$PATH"
11+
- pip install jupyterlab
1112
install:
12-
- npm install --no-optional
13-
- npm run addsibling $TRAVIS_BUILD_DIR
14-
- npm run build
13+
- jlpm install
14+
- jlpm build
15+
- jupyter labextension install .
1516
script:
1617
- echo "Build successful"

0 commit comments

Comments
 (0)