enable t5 in SD3 pipe testing and flux img2img and inpaint #4399
Workflow file for this run
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: Build PR documentation | |
on: | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build_documentation: | |
runs-on: ubuntu-22.04 | |
env: | |
COMMIT_SHA: ${{ github.event.pull_request.head.sha }} | |
PR_NUMBER: ${{ github.event.number }} | |
EVENT_CONTEXT: ${{ toJSON(github.event) }} | |
PR_CLONE_URL: ${{ github.event.pull_request.head.repo.clone_url }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: "huggingface/doc-builder" | |
path: doc-builder | |
- uses: actions/checkout@v4 | |
with: | |
repository: "huggingface/optimum-intel" | |
path: optimum-intel | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: Setup environment | |
run: | | |
pip uninstall -y doc-builder | |
cd doc-builder | |
git pull origin main | |
pip install . | |
pip install black | |
cd .. | |
- name: Make documentation | |
run: | | |
cd optimum-intel | |
make doc BUILD_DIR=intel-doc-build VERSION=pr_$PR_NUMBER COMMIT_SHA_SUBPACKAGE=$COMMIT_SHA CLONE_URL=$PR_CLONE_URL | |
cd .. | |
- name: Save commit_sha & pr_number | |
run: | | |
cd optimum-intel | |
sudo chmod -R ugo+rwx intel-doc-build | |
cd intel-doc-build | |
sudo mv optimum.intel optimum-intel | |
echo ${{ env.COMMIT_SHA }} > ./commit_sha | |
echo ${{ env.PR_NUMBER }} > ./pr_number | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: doc-build-artifact | |
path: optimum-intel/intel-doc-build/ |