forked from jupyterlab/jupyterlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathci_install.sh
executable file
·52 lines (41 loc) · 1.36 KB
/
ci_install.sh
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
#!/bin/bash
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
set -ex
set -o pipefail
# use a single global cache dir
export YARN_ENABLE_GLOBAL_CACHE=1
# display verbose output for pkg builds run during `jlpm install`
export YARN_ENABLE_INLINE_BUILDS=1
# Building should work without yarn installed globally, so uninstall the
# global yarn installed by default.
if [ $OSTYPE == "linux-gnu" ]; then
sudo rm -rf $(which yarn)
! yarn
fi
# create jupyter base dir (needed for config retrieval)
mkdir -p ~/.jupyter
# Set up git config
git config --global user.name foo
git config --global user.email [email protected]
# Install and enable the server extension
pip install -q --upgrade pip --user
pip --version
# Show a verbose install if the install fails, for debugging
pip install -e ".[dev,test]" || pip install -v -e ".[dev,test]"
node -p process.versions
jlpm config
if [[ $GROUP == js-services ]]; then
# Install ipykernel pre-release that supports subshells for ikernel.spec.ts
# Remove when ipykernel 7 is released
pip install --upgrade --pre ipykernel>=7
fi
if [[ $GROUP == nonode ]]; then
# Build the wheel
pip install build
python -m build .
# Remove NodeJS, twice to take care of system and locally installed node versions.
sudo rm -rf $(which node)
sudo rm -rf $(which node)
! node
fi