Skip to content

Commit

Permalink
add monodocs build to ci (#1317)
Browse files Browse the repository at this point in the history
* add monodocs build to ci

Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>

* debug

Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>

* use correct repo

Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>

* set working directory

Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>

* test removing graphviz setup

Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>

---------

Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>
  • Loading branch information
cosmicBboy authored Dec 11, 2023
1 parent 16231e6 commit bdc47f0
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/monodocs_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Docs 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
- 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}
run: |
conda activate monodocs-env
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
run: |
conda activate monodocs-env
make docs

0 comments on commit bdc47f0

Please sign in to comment.