diff --git a/.github/workflows/build_main_documentation.yml b/.github/workflows/build_main_documentation.yml index 2ca80018e48..198b81005b9 100644 --- a/.github/workflows/build_main_documentation.yml +++ b/.github/workflows/build_main_documentation.yml @@ -34,11 +34,6 @@ jobs: repository: 'huggingface/optimum-habana' path: optimum-habana - - uses: actions/checkout@v2 - with: - repository: 'huggingface/optimum-graphcore' - path: optimum-graphcore - - uses: actions/checkout@v2 with: repository: 'huggingface/optimum-intel' @@ -118,13 +113,6 @@ jobs: pip install black cd .. - - name: Make Graphcore documentation - run: | - cd optimum-graphcore - make doc BUILD_DIR=graphcore-doc-build VERSION=${{ env.VERSION }} - sudo mv graphcore-doc-build ../optimum - cd .. - - name: Make Habana documentation run: | sudo docker system prune -a -f @@ -183,7 +171,7 @@ jobs: - name: Combine subpackage documentation run: | cd optimum - sudo python docs/combine_docs.py --subpackages graphcore habana intel neuron furiosa amd --version ${{ env.VERSION }} + sudo python docs/combine_docs.py --subpackages habana intel neuron furiosa amd --version ${{ env.VERSION }} cd .. - name: Push to repositories diff --git a/.github/workflows/build_pr_documentation.yml b/.github/workflows/build_pr_documentation.yml index ddbc211c1ed..72f5faebd73 100644 --- a/.github/workflows/build_pr_documentation.yml +++ b/.github/workflows/build_pr_documentation.yml @@ -49,11 +49,6 @@ jobs: repository: 'huggingface/optimum-habana' path: optimum-habana - - uses: actions/checkout@v2 - with: - repository: 'huggingface/optimum-graphcore' - path: optimum-graphcore - - uses: actions/checkout@v2 with: repository: 'huggingface/optimum-intel' @@ -73,13 +68,6 @@ jobs: pip install black cd .. - - name: Make Graphcore documentation - run: | - cd optimum-graphcore - make doc BUILD_DIR=graphcore-doc-build VERSION=pr_$PR_NUMBER - sudo mv graphcore-doc-build ../optimum - cd .. - - name: Make Habana documentation run: | sudo docker system prune -a -f @@ -128,7 +116,7 @@ jobs: - name: Combine subpackage documentation run: | cd optimum - sudo python docs/combine_docs.py --subpackages graphcore habana intel neuron furiosa --version pr_$PR_NUMBER + sudo python docs/combine_docs.py --subpackages habana intel neuron furiosa --version pr_$PR_NUMBER sudo mv optimum-doc-build ../ cd ..