Update transformers test suite in Optimum-habana-4.55.4 (#2294) #240
This file contains hidden or 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 documentation | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- doc-builder* | |
- v*-release | |
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 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
cache-dependency-path: "kit/package-lock.json" | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Set environment variables | |
run: | | |
cd optimum | |
version=`echo "$(grep '^__version__ =' habana/version.py | cut -d '=' -f 2 | xargs)"` | |
if [[ $version == *.dev0 ]] | |
then | |
echo "VERSION=main" >> $GITHUB_ENV | |
else | |
echo "VERSION=v$version" >> $GITHUB_ENV | |
fi | |
cd .. | |
- name: Setup environment | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install git+https://github.com/huggingface/doc-builder | |
python -m pip install .[quality] | |
- name: Make documentation | |
shell: bash | |
run: | | |
make doc BUILD_DIR=habana-doc-build VERSION=${{ env.VERSION }} | |
sudo chmod -R ugo+rwx habana-doc-build | |
cd habana-doc-build | |
sudo mv optimum.habana optimum-habana | |
doc-builder push optimum-habana --doc_build_repo_id "hf-doc-build/doc-build" --token "${{ secrets.HF_DOC_BUILD_PUSH }}" --commit_msg "Updated with commit $COMMIT_SHA See: https://github.com/huggingface/optimum-habana/commit/$COMMIT_SHA" --n_retries 5 |