Skip to content

Commit

Permalink
ci: disable till image update
Browse files Browse the repository at this point in the history
  • Loading branch information
mkundu1 committed Nov 12, 2024
1 parent 35fbd16 commit ec5d36f
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -417,35 +417,35 @@ jobs:
cat src/ansys/fluent/core/generated/fluent_version_251.py
python -c "from ansys.fluent.core.generated.solver.settings_251 import SHASH; print(f'SETTINGS_HASH = {SHASH}')"
- name: Cache 25.2 API Code
uses: actions/cache@v4
id: cache-252-api-code
with:
path:
src/ansys/fluent/core/generated
doc/source/api/core/meshing/tui
doc/source/api/core/meshing/datamodel
doc/source/api/core/solver/tui
doc/source/api/core/solver/datamodel
key: API-Code-v${{ env.API_CODE_CACHE }}-${{ steps.version.outputs.PYFLUENT_VERSION }}-v25.2.0-${{ hashFiles('src/ansys/fluent/core/codegen/**') }}
restore-keys: API-Code-v${{ env.API_CODE_CACHE }}-${{ steps.version.outputs.PYFLUENT_VERSION }}-v25.2.0
- name: Pull 25.2 Fluent docker image
if: steps.cache-252-api-code.outputs.cache-hit != 'true'
run: make docker-pull
env:
FLUENT_IMAGE_TAG: v25.2.0
- name: Run 25.2 API codegen
if: steps.cache-252-api-code.outputs.cache-hit != 'true'
run: make api-codegen
env:
FLUENT_IMAGE_TAG: v25.2.0
- name: Print 25.2 Fluent version info
run: |
cat src/ansys/fluent/core/generated/fluent_version_252.py
python -c "from ansys.fluent.core.generated.solver.settings_252 import SHASH; print(f'SETTINGS_HASH = {SHASH}')"
# - name: Cache 25.2 API Code
# uses: actions/cache@v4
# id: cache-252-api-code
# with:
# path:
# src/ansys/fluent/core/generated
# doc/source/api/core/meshing/tui
# doc/source/api/core/meshing/datamodel
# doc/source/api/core/solver/tui
# doc/source/api/core/solver/datamodel
# key: API-Code-v${{ env.API_CODE_CACHE }}-${{ steps.version.outputs.PYFLUENT_VERSION }}-v25.2.0-${{ hashFiles('src/ansys/fluent/core/codegen/**') }}
# restore-keys: API-Code-v${{ env.API_CODE_CACHE }}-${{ steps.version.outputs.PYFLUENT_VERSION }}-v25.2.0

# - name: Pull 25.2 Fluent docker image
# if: steps.cache-252-api-code.outputs.cache-hit != 'true'
# run: make docker-pull
# env:
# FLUENT_IMAGE_TAG: v25.2.0

# - name: Run 25.2 API codegen
# if: steps.cache-252-api-code.outputs.cache-hit != 'true'
# run: make api-codegen
# env:
# FLUENT_IMAGE_TAG: v25.2.0

# - name: Print 25.2 Fluent version info
# run: |
# cat src/ansys/fluent/core/generated/fluent_version_252.py
# python -c "from ansys.fluent.core.generated.solver.settings_252 import SHASH; print(f'SETTINGS_HASH = {SHASH}')"

- name: Install again after codegen
run: |
Expand Down Expand Up @@ -487,8 +487,8 @@ jobs:
version: 242
- image-tag: v25.1.0
version: 251
- image-tag: v25.2.0
version: 252
# - image-tag: v25.2.0
# version: 252
timeout-minutes: 120
env:
FLUENT_IMAGE_TAG: ${{ matrix.version == 251 && vars.FLUENT_STABLE_IMAGE_DEV || matrix.image-tag }}
Expand Down

0 comments on commit ec5d36f

Please sign in to comment.