-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
restful server zeppelin interface (#618)
* adapt ci * trigger ci * trigger ci * trigger ci
- Loading branch information
1 parent
d85dfbe
commit 7561969
Showing
40 changed files
with
1,106 additions
and
1,679 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
ci/scripts/conda/cpu/arctern-webserver/build_arctern_webserver.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
if [ "$BUILD_ARCTERN_WEBSERVER" == '1' ]; then | ||
echo "Building arctern-webserver..." | ||
conda build conda/recipes/arctern-webserver -c defaults -c conda-forge | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
ci/scripts/conda/gpu/arctern-webserver/build_arctern_webserver.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
if [ "$BUILD_ARCTERN_WEBSERVER" == '1' ]; then | ||
echo "Building arctern-webserver..." | ||
conda build conda/recipes/arctern-webserver -c defaults -c conda-forge | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
cd ./gui/server | ||
|
||
python setup.py build | ||
python setup.py install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Usage: | ||
# conda build . -c defaults -c conda-forge | ||
|
||
{% set version = environ.get('GIT_DESCRIBE_TAG', '0.0.0.dev').lstrip('v') + environ.get('VERSION_SUFFIX', '') %} | ||
# {% set minor_version = version.split('.')[0] + '.' + version.split('.')[1] %} | ||
{% set git_revision_count=environ.get('GIT_DESCRIBE_NUMBER', 0) %} | ||
{% set git_commit_id=environ.get('GIT_COMMIT_ID', '') %} | ||
package: | ||
name: arctern-webserver | ||
version: {{ version }} | ||
|
||
source: | ||
path: ../../.. | ||
|
||
# ref: https://docs.conda.io/projects/conda-build/en/latest/resources/define-metadata.html#build-section | ||
build: | ||
number: {{ git_revision_count }} | ||
string: {{ git_commit_id }}_{{ git_revision_count }} | ||
|
||
requirements: | ||
build: | ||
- python ===3.7.6 | ||
- setuptools | ||
- flask ===1.1.1 | ||
- waitress ===1.4.3 | ||
- flask-httpauth ===3.3.0 | ||
- flask-cors ===3.0.8 | ||
- requests ===2.23.0 | ||
|
||
run: | ||
- python ===3.7.6 | ||
- flask ===1.1.1 | ||
- waitress ===1.4.3 | ||
- flask-httpauth ===3.3.0 | ||
- flask-cors ===3.0.8 | ||
- requests ===2.23.0 | ||
|
||
test: | ||
commands: | ||
- python -c "import arctern_server" | ||
|
||
about: | ||
home: http://www.github.com/zilliztech/arctern | ||
license: Apache-2.0 | ||
license_family: Apache | ||
license_file: LICENSE | ||
summary: Web server for Arctern |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.