-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:facebookincubator/velox into circle…
…ci-add-cuda
- Loading branch information
Showing
543 changed files
with
21,493 additions
and
25,455 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -299,12 +299,6 @@ jobs: | |
DuckDB_SOURCE: SYSTEM | ||
steps: | ||
- pre-steps | ||
- run: | ||
name: "Install Adapter Dependencies" | ||
command: | | ||
source /opt/rh/gcc-toolset-9/enable | ||
set -xu | ||
PROMPT_ALWAYS_RESPOND=n ./scripts/setup-adapters.sh abfs | ||
- run: | ||
name: "Install Java for Hadoop" | ||
command: | | ||
|
@@ -431,43 +425,6 @@ jobs: | |
fuzzer_exe: "_build/debug/velox/exec/tests/velox_join_fuzzer_test" | ||
fuzzer_args: " --seed ${RANDOM} --duration_sec 3600 --logtostderr=1 --minloglevel=0" | ||
|
||
doc-gen-job: | ||
executor: build | ||
steps: | ||
- checkout | ||
- update-submodules | ||
- add_ssh_keys: | ||
fingerprints: | ||
- "7b:24:f3:1a:b1:15:97:c6:fe:06:46:27:3e:b7:6b:96" | ||
- run: | ||
name: "Build docs and update gh-pages" | ||
command: | | ||
for i in {1..3}; do | ||
make clean | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "velox" | ||
git checkout main | ||
conda init bash | ||
source ~/.bashrc | ||
conda create -y --name docgenenv python=3.7 | ||
conda activate docgenenv | ||
pip install sphinx sphinx-tabs breathe sphinx_rtd_theme chardet | ||
source /opt/rh/gcc-toolset-9/enable | ||
./scripts/gen-docs.sh docgenenv | ||
git checkout gh-pages | ||
cp -R velox/docs/_build/html/* docs | ||
git add docs | ||
if [ -n "$(git status --porcelain --untracked-files=no)" ] | ||
then | ||
git commit -m "Update documentation" | ||
git push | ||
if [ $? -eq 0 ]; then | ||
break; | ||
fi | ||
fi | ||
done | ||
linux-pr-fuzzer-run: | ||
executor: build | ||
steps: | ||
|
@@ -572,11 +529,6 @@ workflows: | |
- linux-build-options | ||
- linux-adapters | ||
- linux-presto-fuzzer-run | ||
- doc-gen-job: | ||
filters: | ||
branches: | ||
only: | ||
- main | ||
|
||
shorter-fuzzer: | ||
unless: << pipeline.parameters.run-longer-expression-fuzzer >> | ||
|
@@ -585,8 +537,3 @@ workflows: | |
- linux-pr-fuzzer-run | ||
- linux-build-options | ||
- linux-adapters | ||
- doc-gen-job: | ||
filters: | ||
branches: | ||
only: | ||
- main |
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,85 @@ | ||
# Copyright (c) Facebook, Inc. and its affiliates. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
name: Update Documentation | ||
|
||
on: | ||
push: | ||
paths: | ||
- "velox/docs/**" | ||
- ".github/workflows/docs.yml" | ||
|
||
pull_request: | ||
paths: | ||
- "velox/docs/**" | ||
- ".github/workflows/docs.yml" | ||
|
||
permissions: | ||
contents: write | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.repository }}-${{ github.head_ref || github.sha }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build_docs: | ||
name: Build and Push | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup Git User | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "velox" | ||
- name: Install Dependencies | ||
run: | | ||
sudo apt update | ||
sudo apt install -y pandoc | ||
pip install sphinx sphinx-tabs breathe sphinx_rtd_theme chardet | ||
- name: Build Documentation | ||
run: | | ||
cd velox/docs | ||
make clean | ||
# pyvelox | ||
mkdir -p bindings/python | ||
pandoc ../../pyvelox/README.md --from markdown --to rst -s -o bindings/python/README_generated_pyvelox.rst | ||
# velox | ||
make html | ||
- name: Push Documentation | ||
if: ${{ github.event_name == 'push' && github.repository == 'facebookincubator/velox'}} | ||
run: | | ||
git checkout gh-pages | ||
cp -R velox/docs/_build/html/* docs | ||
git add docs | ||
if [ -n "$(git status --porcelain --untracked-files=no)" ] | ||
then | ||
git commit -m "Update documentation" | ||
git push | ||
fi | ||
- name: Upload Documentation | ||
if: github.event_name == 'pull_request' | ||
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 | ||
with: | ||
path: velox/docs/_build/html | ||
retention-days: 3 |
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
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
Oops, something went wrong.