We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f2be9f6 + 492f434 commit 5f09d1fCopy full SHA for 5f09d1f
.travis/travis_install.sh
@@ -11,7 +11,20 @@ section_end "install.base.requirements"
11
12
13
section "install.cesium.requirements"
14
-pip install -e git://github.com/cesium-ml/cesium.git#egg=cesium
+
15
+if [[ -n ${TRIGGERED_FROM_REPO} ]]; then
16
+ mkdir cesium-clone
17
+ cd cesium-clone
18
+ git init
19
+ git remote add origin git://github.com/${TRIGGERED_FROM_REPO}
20
+ git fetch --depth=1 origin ${TRIGGERED_FROM_BRANCH}
21
+ git checkout -b ${TRIGGERED_FROM_BRANCH} ${TRIGGERED_FROM_SHA}
22
+ pip install .
23
+ cd ..
24
+else
25
+ pip install -e git://github.com/cesium-ml/cesium.git#egg=cesium
26
+fi
27
28
pip install --retries 3 -r requirements.txt
29
pip list --format=columns
30
section_end "install.cesium.requirements"
0 commit comments