-
Notifications
You must be signed in to change notification settings - Fork 11
Fix cubit deprecation warning #584
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -5,8 +5,8 @@ inputs: | |||||||
| description: Additional flags to pass to pytest, i.e., markers | ||||||||
| required: false | ||||||||
| default: "" | ||||||||
| cubit-root: | ||||||||
| description: Path to the cubit installation | ||||||||
| cubitpy_config_file: | ||||||||
| description: Path to the cubitpy config file | ||||||||
| required: false | ||||||||
| default: "" | ||||||||
| runs: | ||||||||
|
|
@@ -18,7 +18,7 @@ runs: | |||||||
| BEAMME_FOUR_C_EXE: /home/user/4C/bin/4C | ||||||||
| OMPI_MCA_rmaps_base_oversubscribe: 1 | ||||||||
| run: | | ||||||||
| export CUBIT_ROOT=${{ inputs.cubit-root }} | ||||||||
| export CUBITPY_CONFIG_PATH=${{ inputs.cubitpy_config_file }} | ||||||||
|
||||||||
| export CUBITPY_CONFIG_PATH=${{ inputs.cubitpy_config_file }} | |
| export CUBITPY_CONFIG_PATH=${{ inputs.cubitpy_config_file }} | |
| export CUBIT_ROOT="${{ env.cubit_root }}" |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -58,12 +58,12 @@ jobs: | |||||
| uses: ./.github/actions/run_tests | ||||||
| with: | ||||||
| additional-pytest-flags: "--4C --ArborX --CubitPy --check-for-unused-reference-files --cov-fail-under=93" | ||||||
| cubit-root: ${{ steps.cubit.outputs.cubit_root }} | ||||||
| cubitpy_config_file: ${{ steps.cubit.outputs.cubitpy_config_file }} | ||||||
| - name: Free cubit license | ||||||
| if: ${{ always() }} | ||||||
| uses: ./.github/actions/cubit_finalize | ||||||
| with: | ||||||
| cubit-root: ${{ steps.cubit.outputs.cubit_root }} | ||||||
| cubitpy_config_file: ${{ steps.cubit.outputs.cubitpy_config_file }} | ||||||
|
||||||
| cubitpy_config_file: ${{ steps.cubit.outputs.cubitpy_config_file }} | |
| cubit-root: ${{ env.cubit_root }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The description is incorrect. This output now contains the path to the cubit config file (cubit_config.yaml), not the path to the Cubit installation. The description should be updated to reflect this change.