Skip to content

[CI][docs] Fix docs CI #40

[CI][docs] Fix docs CI

[CI][docs] Fix docs CI #40

Workflow file for this run

# Copyright Allo authors. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
name: "Build documentation"
on:
push:
branches:
- main
paths:
- '.github/workflows/**'
- 'docs/**'
- 'tutorials/**'
pull_request:
branches:
- main
paths:
- '.github/workflows/**'
- 'docs/**'
- 'tutorials/**'
jobs:
build:
# This job runs on Linux
runs-on: ubuntu-latest
container:
image: chhzh123/hcl-dialect:llvm-18.x-py3.12
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
fetch-depth: 0
# - name: Patch LLVM Project
# run: |
# cp externals/llvm_patch /root/llvm-project
# cd /root/llvm-project
# git apply llvm_patch
- name: Build HCL-MLIR
shell: bash
run: |
source activate hcl-dev
export SUBMOD_COMMIT=$(git rev-parse HEAD:externals/hcl_mlir)
cd /root/hcl-dialect
git remote update
git fetch
git checkout $SUBMOD_COMMIT
cd build
make -j4
cd tools/hcl/python_packages/hcl_core
python3 -m pip install -e .
- name: Build docs
shell: bash
run: |
source activate hcl-dev
export ALLO_HOME=$(pwd)
export LLVM_BUILD_DIR=/root/llvm-project/build
export PATH=${LLVM_BUILD_DIR}/bin:${PATH}
export PYTHONPATH=$ALLO_HOME:${PYTHONPATH}
export PYTHONPATH=/root/hcl-dialect/build/tools/hcl/python_packages/hcl_core:${PYTHONPATH}
python3 -m pip install -r requirements.txt
cd docs
python3 -m pip install -r requirements.txt
make html
# Create an artifact of the html output using Github action: https://github.com/actions/upload-artifact
- uses: actions/upload-artifact@v1
with:
name: DocumentationHTML
path: docs/build/html/
- name: Install rsync
run: |
apt-get update && apt-get install -y rsync
- name: Deploy docs
shell: bash
uses: JamesIves/github-pages-deploy-action@v4

Check failure on line 74 in .github/workflows/sphinx_build.yml

View workflow run for this annotation

GitHub Actions / Build documentation

Invalid workflow file

The workflow is not valid. .github/workflows/sphinx_build.yml (Line: 74, Col: 7): Unexpected value 'uses' .github/workflows/sphinx_build.yml (Line: 75, Col: 7): Unexpected value 'with'
with:
ACCESS_TOKEN: ${{ secrets.DEPLOY_ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: docs/build/html
- run: touch docs/build/html/.nojekyll
- name: Deploy docs to website
shell: bash
uses: cpina/github-action-push-to-another-repository@main
env:
SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }}
with:
source-directory: 'docs/build/html'
destination-github-username: 'chhzh123'
destination-repository-name: 'allo-docs'
user-email: hc676@cornell.edu
target-branch: gh-pages
target-directory: ""