Skip to content

Commit 348ef24

Browse files
ci: Update release job [skip tests] (#4545)
## Context Release testing is running for dev release as well. ## Change Summary Remove release testing job dependency. ## Rationale To run release testing during non-dev release. ## Impact Do not run release testing during dev release. --------- Co-authored-by: pyansys-ci-bot <[email protected]>
1 parent c1ffc2f commit 348ef24

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ jobs:
139139
with:
140140
generate-summary: true
141141
token: ${{ secrets.GITHUB_TOKEN }}
142-
auditing-level: 'high'
142+
auditing-level: "high"
143143

144144
docs_build:
145145
name: Build Documentation
@@ -171,7 +171,7 @@ jobs:
171171
key: Python-${{ runner.os }}-${{ env.PYTHON_VERSION }}-${{ hashFiles('pyproject.toml') }}
172172
restore-keys: |
173173
Python-${{ runner.os }}-${{ env.PYTHON_VERSION }}
174-
lookup-only: false # zizmor: ignore[cache-poisoning]
174+
lookup-only: false # zizmor: ignore[cache-poisoning]
175175

176176
- name: Install Quarto
177177
uses: quarto-dev/quarto-actions/setup@9e48da27e184aa238fcb49f5db75469626d43adb # v2.1.9
@@ -207,7 +207,7 @@ jobs:
207207
path: |
208208
src/ansys/fluent/core/generated
209209
key: API-Code-v${{ env.API_CODE_CACHE }}-${{ steps.version.outputs.PYFLUENT_VERSION }}-${{ env.DOC_DEPLOYMENT_IMAGE_TAG }}-${{ hashFiles('src/ansys/fluent/core/codegen/**') }}
210-
lookup-only: false # zizmor: ignore[cache-poisoning]
210+
lookup-only: false # zizmor: ignore[cache-poisoning]
211211

212212
- name: Login to GitHub Container Registry
213213
if: steps.cache-api-code.outputs.cache-hit != 'true'
@@ -284,7 +284,7 @@ jobs:
284284
key: Python-${{ runner.os }}-${{ env.MAIN_PYTHON_VERSION }}-${{ hashFiles('pyproject.toml') }}
285285
restore-keys: |
286286
Python-${{ runner.os }}-${{ env.MAIN_PYTHON_VERSION }}
287-
lookup-only: false # zizmor: ignore[cache-poisoning]
287+
lookup-only: false # zizmor: ignore[cache-poisoning]
288288

289289
- name: Add version information
290290
run: make version-info
@@ -313,7 +313,7 @@ jobs:
313313
# Combined cache key for all versions:
314314
# API-Code-<Cache version>-<PyFluent version>-<First Fluent release version>-<Last Fluent release version>-<Fluent dev version>-<Hash of codegen files>
315315
key: API-Code-v${{ env.API_CODE_CACHE }}-${{ steps.version.outputs.PYFLUENT_VERSION }}-v23.1.0-v25.2.0-${{ vars.FLUENT_STABLE_IMAGE_DEV }}-${{ hashFiles('src/ansys/fluent/core/codegen/**') }}
316-
lookup-only: false # zizmor: ignore[cache-poisoning]
316+
lookup-only: false # zizmor: ignore[cache-poisoning]
317317

318318
- name: Pull 23.1 Fluent docker image
319319
if: steps.cache-api-code.outputs.cache-hit != 'true'
@@ -602,7 +602,7 @@ jobs:
602602
key: Python-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}
603603
restore-keys: |
604604
Python-${{ runner.os }}-${{ matrix.python-version }}
605-
lookup-only: false # zizmor: ignore[cache-poisoning]
605+
lookup-only: false # zizmor: ignore[cache-poisoning]
606606

607607
- name: Add version information
608608
run: make version-info
@@ -661,7 +661,7 @@ jobs:
661661
release:
662662
name: Release
663663
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
664-
needs: [test, update-changelog, nightly-dev-test]
664+
needs: [test, update-changelog]
665665
runs-on: ubuntu-latest
666666
permissions:
667667
id-token: write # required for trusted publishing
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update release job [skip tests]

0 commit comments

Comments
 (0)