Skip to content
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

Prepare release CI to 2024.2.pre1 #1495

Merged
merged 2 commits into from
Apr 10, 2024
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
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ body:
label: Which DPF/Ansys version are you using?
multiple: true
options:
- 'DPF Server 2024.2.pre1'
- 'DPF Server 2024.2.pre0'
- 'Ansys 2024 R1'
- 'DPF Server 2024.1.pre0'
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ci_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
standalone_branch_suffix:
description: 'Suffix of the branch on standalone'
required: false
default: '.pre0'
default: '.pre1'

#┌───────────── minute (0 - 59)
#│ ┌───────────── hour (0 - 23)
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
python_versions: '["3.9", "3.10", "3.11"]'
wheel: true
wheelhouse: true
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }}
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre1' }}
secrets: inherit

tests_any:
Expand All @@ -100,15 +100,15 @@ jobs:
python_versions: '["3.9", "3.10", "3.11"]'
wheel: true
wheelhouse: false
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }}
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre1' }}
test_any: true
secrets: inherit

docs:
uses: ./.github/workflows/docs.yml
with:
ANSYS_VERSION: ${{ github.event.inputs.ansys_version || '242' }}
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }}
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre1' }}
event_name: ${{ github.event_name }}
secrets: inherit

Expand All @@ -117,7 +117,7 @@ jobs:
with:
ANSYS_VERSION: ${{ github.event.inputs.ansys_version || '242' }}
python_versions: '["3.9", "3.10", "3.11"]'
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }}
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre1' }}
secrets: inherit

retro_241:
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
uses: ./.github/workflows/pydpf-post.yml
with:
ANSYS_VERSION: ${{ github.event.inputs.ansys_version || '242' }}
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }}
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre1' }}
test_docstrings: "true"
secrets: inherit

Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:
uses: ./.github/workflows/test_docker.yml
with:
ANSYS_VERSION: ${{ github.event.inputs.ansys_version || '242' }}
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }}
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre1' }}
secrets: inherit

docker_examples:
Expand All @@ -208,7 +208,7 @@ jobs:
with:
ANSYS_VERSION: ${{ github.event.inputs.ansys_version || '242' }}
python_versions: '["3.9", "3.10", "3.11"]'
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }}
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre1' }}
secrets: inherit

draft_release:
Expand Down
Loading