Browse Source

Remove @jupyterlab/services Travis scripts

Jeremy Tuloup 5 years ago
parent
commit
ff12b0a680

+ 0 - 17
packages/services/scripts/travis_after_success.sh

@@ -1,17 +0,0 @@
-#!/bin/bash
-if [[ $TRAVIS_PULL_REQUEST == false && $TRAVIS_BRANCH == "master" ]]
-then
-    echo "-- pushing docs --"
-
-    ( cd docs 
-    git init
-    git config user.email "travis@travis-ci.com"
-    git config user.name "Travis Bot"
-
-    git add .
-    git commit -m "Deployed to GitHub Pages"
-    git push --force --quiet "https://${GHTOKEN}@${GH_REF}" master:gh-pages > /dev/null 2>&1
-    )
-else
-    echo "-- will only push docs from master --"
-fi

+ 0 - 23
packages/services/scripts/travis_install.sh

@@ -1,23 +0,0 @@
-#!/bin/bash
-set -ex
-npm install
-wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
-bash miniconda.sh -b -p $HOME/miniconda
-export PATH="$HOME/miniconda/bin:$PATH"
-hash -r
-conda config --set always_yes yes --set changeps1 no
-conda update -q conda
-conda info -a
-conda install pip pyzmq
-
-if [[ $TRAVIS_NODE_VERSION == "0.12" ]]; then
-    conda install notebook
-else 
-    # Install the development version of the notebook
-    git clone https://github.com/jupyter/notebook
-    cd notebook
-    pip install --pre -v -e .
-fi
-
-# Create jupyter base dir (needed for config retrieval).
-mkdir ~/.jupyter

+ 0 - 20
packages/services/scripts/travis_script.sh

@@ -1,20 +0,0 @@
-#!/bin/bash
-set -ex
-export DISPLAY=:99.0
-sh -e /etc/init.d/xvfb start || true
-
-npm run clean
-npm run build
-npm run build:examples
-npm test
-npm run test:coverage
-export PATH="$HOME/miniconda/bin:$PATH"
-npm run test:integration
-
-pushd examples/node
-python main.py 
-popd
-
-if [[ $TRAVIS_NODE_VERSION == "5.1" ]]; then    
-    npm run docs
-fi