-
Notifications
You must be signed in to change notification settings - Fork 12
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
remove non compiling code #139
Conversation
4d75578
to
7d0b1b6
Compare
I found some checks failed. Is it okay to fail to build OGL for OpenFOAM? |
yes that is expected for now. We should fix that in a separate PR in this stack. |
99087b6
to
a35359d
Compare
9cc2d44
to
86daf4f
Compare
.github/workflows/static_checks.yaml
Outdated
- name: Run clang-tidy | ||
run: | | ||
git config --global --add safe.directory /__w/OGL/OGL | ||
# Create list of .cpp files belonging to this repository |
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 comment may need to reflect the change:
# Create list of .C files belonging to this repository
# Create list of .cpp files that are in this repository and part of the | ||
# compilation database | ||
# also filters out " at the begin and end of the filename | ||
jq ".[] | .file" build/ReleaseAll/compile_commands.json \ | ||
jq ".[] | .file" build/ReleaseCPUOnly/compile_commands.json \ |
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.
Does ReleaseAll
mean it is for both CPU and GPU?
Why changes to ReleaseCPUOnly
?
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.
No, the ReleaseAll
came from the corresponding NeoFOAM workflow and just means build all targets (unit tests, core, ...)
c63140e
to
9f728e7
Compare
This PR just removes some parts of the code that wont work with ginkgo 1.8.0 it is not meant to produce a working of OGL but rather allows to implement on top of it.