Skip to content

ci: Update 26.1 image tag to v26.1.latest #4281

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/doc-build-dev-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:

env:
DOCUMENTATION_CNAME: "fluent.docs.pyansys.com"
DOC_DEPLOYMENT_IMAGE_TAG: v26.1.0
DOC_DEPLOYMENT_IMAGE_TAG: ${{ vars.FLUENT_STABLE_IMAGE_DEV }}
ANSYSLMD_LICENSE_FILE: ${{ format('1055@{0}', secrets.LICENSE_SERVER) }}
PYFLUENT_TIMEOUT_FORCE_EXIT: 30
PYFLUENT_LAUNCH_CONTAINER: 1
Expand Down
32 changes: 2 additions & 30 deletions .github/workflows/execute-examples-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ jobs:
version: 252
- image-tag: v26.1.0
version: 261
env:
FLUENT_IMAGE_TAG: ${{ matrix.version == 261 && vars.FLUENT_STABLE_IMAGE_DEV || matrix.image-tag }}

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -66,8 +68,6 @@ jobs:
else
echo "Image already exists locally, skipping pull."
fi
env:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

- name: Install Dependencies
run: |
Expand All @@ -84,99 +84,71 @@ jobs:
run: |
echo "Executing examples"
sudo rm -rf /home/ansys/Downloads/ansys_fluent_core_examples/*
env:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

# ~1 minute
- name: Execute mixing_elbow_settings_api.py
run: |
python examples/00-fluent/mixing_elbow_settings_api.py
env:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

# ~1 minute
- name: Execute species_transport.py
run: |
python examples/00-fluent/species_transport.py
env:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

# ~1 minute
- name: Execute modeling_cavitation.py
run: |
python examples/00-fluent/modeling_cavitation.py
env:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

# ~3 minutes
- name: Execute ahmed_body_workflow.py
run: |
python examples/00-fluent/ahmed_body_workflow.py
env:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

# ~4 minutes
- name: Execute exhaust_system_settings_api.py
run: |
python examples/00-fluent/exhaust_system_settings_api.py
env:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

# ~4 minutes
- name: Execute parametric_static_mixer_1.py
run: |
python examples/00-fluent/parametric_static_mixer_1.py
env:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

# ~5 minutes
- name: Execute brake.py
run: |
python examples/00-fluent/brake.py
env:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

# ~5 minutes
- name: Execute external_compressible_flow.py
run: |
python examples/00-fluent/external_compressible_flow.py
env:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

# ~15 minutes
- name: Execute radiation_headlamp.py
run: |
python examples/00-fluent/radiation_headlamp.py
env:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

# ~17 minutes
- name: Execute DOE_ML.py
run: |
python examples/00-fluent/DOE_ML.py
env:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

# ~17 minutes
- name: Execute frozen_rotor_workflow.py
run: |
python examples/00-fluent/frozen_rotor_workflow.py
env:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

# ~26 minutes, hangs for v26.1.0
- name: Execute lunar_lander_thermal.py
run: |
python examples/00-fluent/lunar_lander_thermal.py
env:
FLUENT_IMAGE_TAG: v25.2.0

# ~40 minutes
- name: Execute tyler_sofrin_modes.py
run: |
python examples/00-fluent/tyler_sofrin_modes.py
env:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

# https://github.com/ansys/pyfluent/issues/4157
# - name: Execute conjugate_heat_transfer.py
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:
env:
ANSYSLMD_LICENSE_FILE: ${{ format('1055@{0}', secrets.LICENSE_SERVER) }}
MAIN_PYTHON_VERSION: "3.10"
FLUENT_IMAGE_TAG: v26.1.0
FLUENT_IMAGE_TAG: v26.1.latest
FLUENT_VERSION: 261

jobs:
Expand Down
15 changes: 2 additions & 13 deletions .github/workflows/test-run-custom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ jobs:
version: 252
- image-tag: v26.1.0
version: 261
env:
FLUENT_IMAGE_TAG: ${{ matrix.version == 261 && vars.FLUENT_STABLE_IMAGE_DEV || matrix.image-tag }}

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -84,21 +86,10 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Pull Fluent docker image
if: matrix.image-tag != 'v26.1.0'
run: make docker-pull
env:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

- name: Pull Fluent docker image dev
if: matrix.image-tag == 'v26.1.0'
run: make docker-pull
env:
FLUENT_IMAGE_TAG: ${{ vars.FLUENT_STABLE_IMAGE_DEV }}

- name: Run API codegen
run: make api-codegen
env:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

- name: Print Fluent version info
run: |
Expand All @@ -115,8 +106,6 @@ jobs:
sudo rm -rf /home/ansys/Downloads/ansys_fluent_core_examples/*
make install-test
python -m pytest -v --no-cov --capture=no -k test_parametric_workflow --nightly
env:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

- name: Cleanup previous docker containers
if: always()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-run-dev-version-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
PYFLUENT_WATCHDOG_DEBUG: "OFF"
PYFLUENT_HIDE_LOG_SECRETS: 1
PYTHON_VERSION: "3.10"
FLUENT_IMAGE_TAG: v26.1.0
FLUENT_IMAGE_TAG: v26.1.latest
FLUENT_VERSION: 261

jobs:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/test-run-wo-codegen-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ jobs:
version: 252
- image-tag: v26.1.0
version: 261
env:
FLUENT_IMAGE_TAG: ${{ matrix.version == 261 && vars.FLUENT_STABLE_IMAGE_DEV || matrix.image-tag }}

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -124,15 +126,11 @@ jobs:

- name: Pull Fluent docker image
run: make docker-pull
env:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

- name: Unit Testing
run: |
make install-test
make unittest-all-${{ matrix.version }}-no-codegen
env:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

- name: Cleanup previous docker containers
if: always()
Expand Down
1 change: 1 addition & 0 deletions doc/changelog.d/4281.maintenance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update 26.1 image tag to v26.1.latest