TESTING: Doc build without cache #1562
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: GitHub CI CD | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
tags: | |
- "*" | |
branches: | |
- main | |
env: | |
ANSYSLMD_LICENSE_FILE: ${{ format('1055@{0}', secrets.LICENSE_SERVER) }} | |
MAIN_PYTHON_VERSION: '3.10' | |
PACKAGE_NAME: 'PyAEDT' | |
DOCUMENTATION_CNAME: 'aedt.docs.pyansys.com' | |
MEILISEARCH_API_KEY: ${{ secrets.MEILISEARCH_API_KEY }} | |
MEILISEARCH_HOST_URL: ${{ vars.MEILISEARCH_HOST_URL }} | |
MEILISEARCH_PUBLIC_API_KEY: ${{ secrets.MEILISEARCH_PUBLIC_API_KEY }} | |
ON_CI: True | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
doc-build-win-cache: | |
name: Documentation windows with cache | |
runs-on: [ self-hosted, Windows, pyaedt ] | |
steps: | |
- name: Run Ansys documentation building action | |
uses: ansys/actions/doc-build@fix/doc-build-without-python-cache | |
with: | |
python-version: ${{ env.MAIN_PYTHON_VERSION }} | |
use-python-cache: true | |
doc-build-win-no-cache: | |
name: Documentation windows without cache | |
runs-on: [ self-hosted, Windows, pyaedt ] | |
steps: | |
- name: Run Ansys documentation building action | |
uses: ansys/actions/doc-build@fix/doc-build-without-python-cache | |
with: | |
python-version: ${{ env.MAIN_PYTHON_VERSION }} | |
use-python-cache: false | |
doc-build-lin-cache: | |
name: Documentation linux with cache | |
runs-on: [ self-hosted, Linux, pyaedt ] | |
steps: | |
- name: Run Ansys documentation building action | |
uses: ansys/actions/doc-build@fix/doc-build-without-python-cache | |
with: | |
python-version: ${{ env.MAIN_PYTHON_VERSION }} | |
use-python-cache: true | |
doc-build-lin-no-cache: | |
name: Documentation linux without cache | |
runs-on: [ self-hosted, Linux, pyaedt ] | |
steps: | |
- name: Run Ansys documentation building action | |
uses: ansys/actions/doc-build@fix/doc-build-without-python-cache | |
with: | |
python-version: ${{ env.MAIN_PYTHON_VERSION }} | |
use-python-cache: false |