Test_data added for #4764 (#1764) #1162
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
name: Monodocs Build | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
docs: | |
name: Docs Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetch flytesnacks code | |
uses: actions/checkout@v4 | |
with: | |
path: "${{ github.workspace }}/flytesnacks" | |
- name: Fetch flyte code | |
uses: actions/checkout@v4 | |
with: | |
repository: flyteorg/flyte | |
path: "${{ github.workspace }}/flyte" | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: true | |
python-version: 3.9 | |
- name: Remove large directories | |
run: | | |
sudo rm -rf \ | |
"$AGENT_TOOLSDIRECTORY" \ | |
/opt/google/chrome \ | |
/opt/microsoft/msedge \ | |
/opt/microsoft/powershell \ | |
/opt/pipx \ | |
/usr/lib/mono \ | |
/usr/local/julia* \ | |
/usr/local/lib/android \ | |
/usr/local/lib/node_modules \ | |
/usr/local/share/chromium \ | |
/usr/local/share/powershell \ | |
/usr/share/dotnet \ | |
/usr/share/swift | |
- shell: bash -el {0} | |
working-directory: ${{ github.workspace }}/flyte | |
run: | | |
conda install -c conda-forge conda-lock | |
conda-lock install -n monodocs-env monodocs-environment.lock.yaml | |
- shell: bash -el {0} | |
working-directory: ${{ github.workspace }}/flyte | |
run: | | |
conda activate monodocs-env | |
pip install ./flyteidl | |
conda info | |
conda list | |
conda config --show-sources | |
conda config --show | |
printenv | sort | |
- name: Build the documentation | |
working-directory: ${{ github.workspace }}/flyte | |
shell: bash -el {0} | |
env: | |
FLYTESNACKS_LOCAL_PATH: ${{ github.workspace }}/flytesnacks | |
DOCSEARCH_API_KEY: fake_docsearch_api_key # must be set to get doc build to succeed | |
run: | | |
conda activate monodocs-env | |
make -C docs html SPHINXOPTS="-W" |