-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1495 from BlazingDB/branch-0.19
0.19 Release
- Loading branch information
Showing
2,671 changed files
with
4,492,660 additions
and
4,774 deletions.
There are no files selected for viewing
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,48 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: Build docs | ||
|
||
# Controls when the action will run. | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
# This workflow contains a single job called "build" | ||
docs: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
|
||
# Runs a single command using the runners shell | ||
- uses: mattnotmitt/doxygen-action@v1 | ||
with: | ||
working-directory: 'docsrc/' | ||
doxyfile-path: 'source/Doxyfile' | ||
- uses: ammaraskar/sphinx-action@master | ||
with: | ||
build-command: "make html -e" | ||
docs-folder: "docsrc/" | ||
- name: Commit documentation changes | ||
run: | | ||
git clone https://github.com/romulo-auccapuclla/blazingsql.git --branch main --single-branch main | ||
cp -a docsrc/build/html/. docs/ | ||
cd docs | ||
touch .nojekyll | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git add . | ||
git commit -m "Update documentation" -a || true | ||
- name: Push changes | ||
uses: ad-m/github-push-action@master | ||
with: | ||
branch: main | ||
directory: docs | ||
force: true | ||
github_token: ${{ secrets.GITHUB_TOKEN }} |
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 @@ | ||
|
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,67 @@ | ||
ARG CUDA_VER="10.2" | ||
ARG UBUNTU_VERSION="16.04" | ||
FROM nvidia/cuda:${CUDA_VER}-runtime-ubuntu${UBUNTU_VERSION} | ||
LABEL Description="blazingdb/blazingsql is the official BlazingDB environment for BlazingSQL on NIVIDA RAPIDS." Vendor="BlazingSQL" Version="0.4.0" | ||
|
||
ARG CUDA_VER=10.2 | ||
ARG CONDA_CH="-c blazingsql -c rapidsai -c nvidia" | ||
ARG PYTHON_VERSION="3.7" | ||
ARG RAPIDS_VERSION="0.18" | ||
|
||
SHELL ["/bin/bash", "-c"] | ||
ENV PYTHONDONTWRITEBYTECODE=true | ||
|
||
RUN apt-get update -qq && \ | ||
apt-get install curl git -yqq --no-install-recommends && \ | ||
apt-get clean -y && \ | ||
curl -s -o /tmp/miniconda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && \ | ||
bash /tmp/miniconda.sh -bfp /usr/local/ && \ | ||
rm -rf /tmp/miniconda.sh && \ | ||
conda create --no-default-packages python=${PYTHON_VERSION} -y -n bsql && \ | ||
conda install -y --freeze-installed -n bsql \ | ||
${CONDA_CH} \ | ||
-c conda-forge -c defaults \ | ||
cugraph=${RAPIDS_VERSION} cuml=${RAPIDS_VERSION} \ | ||
cusignal=${RAPIDS_VERSION} \ | ||
cuspatial=${RAPIDS_VERSION} \ | ||
cuxfilter clx=${RAPIDS_VERSION} \ | ||
python=${PYTHON_VERSION} cudatoolkit=${CUDA_VER} \ | ||
blazingsql=${RAPIDS_VERSION} \ | ||
jupyterlab \ | ||
networkx statsmodels xgboost scikit-learn \ | ||
geoviews seaborn matplotlib holoviews colorcet && \ | ||
conda clean -afy && \ | ||
rm -rf /var/cache/apt /var/lib/apt/lists/* /tmp/miniconda.sh /usr/local/pkgs/* && \ | ||
rm -rf /usr/local/envs/bsql/conda-meta && \ | ||
rm -rf /usr/local/envs/bsql/include && \ | ||
rm /usr/local/envs/bsql/lib/libpython3.7m.so.1.0 && \ | ||
find /usr/local/envs/bsql -name '__pycache__' -type d -exec rm -rf '{}' '+' && \ | ||
find /usr/local/envs/bsql -follow -type f -name '*.pyc' -delete && \ | ||
rm -rf /usr/local/envs/bsql/lib/libasan.so.5.0.0 \ | ||
/usr/local/envs/bsql/lib/libtsan.so.0.0.0 \ | ||
/usr/local/envs/bsql/lib/liblsan.so.0.0.0 \ | ||
/usr/local/envs/bsql/lib/libubsan.so.1.0.0 \ | ||
/usr/local/envs/bsql/bin/x86_64-conda-linux-gnu-ld \ | ||
/usr/local/envs/bsql/bin/sqlite3 \ | ||
/usr/local/envs/bsql/bin/openssl \ | ||
/usr/local/envs/bsql/share/terminfo \ | ||
/usr/local/envs/bsql/bin/postgres \ | ||
/usr/local/envs/bsql/bin/pg_* \ | ||
/usr/local/envs/bsql/man \ | ||
/usr/local/envs/bsql/qml \ | ||
/usr/local/envs/bsql/qsci \ | ||
/usr/local/envs/bsql/mkspecs && \ | ||
find /usr/local/envs/bsql/lib/python3.7/site-packages -name 'tests' -type d -exec rm -rf '{}' '+' && \ | ||
find /usr/local/envs/bsql/lib/python3.7/site-packages -name '*.pyx' -delete && \ | ||
find /usr/local/envs/bsql -name '*.c' -delete && \ | ||
git clone --branch=master https://github.com/BlazingDB/Welcome_to_BlazingSQL_Notebooks /blazingsql && \ | ||
rm -rf /blazingsql/.git && \ | ||
mkdir /.local /.jupyter /.cupy && chmod 777 /.local /.jupyter /.cupy | ||
|
||
WORKDIR /blazingsql | ||
COPY run_jupyter.sh /blazingsql | ||
|
||
# Jupyter | ||
EXPOSE 8888 | ||
CMD ["/blazingsql/run_jupyter.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
Binary file added
BIN
+244 Bytes
algebra/blazingdb-calcite-application/selected-queries-reference.bin
Binary file not shown.
Oops, something went wrong.