Skip to content
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ jobs:
build_test:
name: Build and Unit Testing
needs: test-import
runs-on: ubuntu-latest
runs-on: self-hosted
Copy link
Contributor Author

@mkundu1 mkundu1 Jun 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The codegen job is randomly failing in the github runner. Using the ansys runner will probably improve it.


steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-doc-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
nightly_docs_build:
runs-on: ubuntu-20.04
runs-on: self-hosted

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion src/ansys/fluent/core/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""

# major, minor, patch
version_info = 0, 7, "dev0"
version_info = 0, 8, "dev0"

# Nice string for the version
__version__ = ".".join(map(str, version_info))