diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5cd93a2065c..904a5a7c9a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -194,7 +194,7 @@ jobs: - name: Install again after codegen run: | rm -rf dist - make install + make install > /dev/null - name: Cache examples uses: actions/cache@v3 @@ -205,11 +205,7 @@ jobs: Examples-v${{ env.RESET_EXAMPLES_CACHE }}-${{ steps.version.outputs.PYFLUENT_VERSION }}-${{ matrix.image-tag }} - name: Build Documentation - run: | - ls -al src/ansys/fluent/core/solver - which python - ls -alR /home/ansys/actions-runner/_work/_tool/Python/3.9.12/x64 - make build-doc DOCS_CNAME=fluentdocs.pyansys.com + run: make build-doc DOCS_CNAME=fluentdocs.pyansys.com env: ANSYSLMD_LICENSE_FILE: ${{ format('1055@{0}', secrets.LICENSE_SERVER) }} PYFLUENT_START_INSTANCE: 0 diff --git a/Makefile b/Makefile index 8d3192df045..cb741edd8eb 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ style: install: @pip install -r requirements/requirements_build.txt @python -m build - @pip install dist/*.whl + @pip install -q --force-reinstall dist/*.whl version-info: @bash -c "date -u +'Build date: %B %d, %Y %H:%M UTC ShaID: ' | xargs -I date sed -i 's/_VERSION_INFO = .*/_VERSION_INFO = \"date\"/g' src/ansys/fluent/core/__init__.py"