-
-
Notifications
You must be signed in to change notification settings - Fork 82
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
fix: compile on old cmake version and add PATH #346
Conversation
@@ -48,19 +48,19 @@ jobs: | |||
run: | | |||
make -C example -j | |||
- name: Upload build results (without jit) | |||
uses: actions/upload-artifact@v3 | |||
uses: actions/upload-artifact@v4 |
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.
In master branch it is still v2, I saw the errors, is v4 in actions? I think jobs are not able to find this
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.
LGTM. |
@@ -11,4 +11,3 @@ add_dependencies(bpftime_base_attach_impl spdlog::spdlog) | |||
|
|||
target_link_libraries(bpftime_base_attach_impl INTERFACE spdlog::spdlog) | |||
|
|||
set_property(TARGET bpftime_base_attach_impl PROPERTY CXX_STANDARD 20) |
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.
Why not use C++ 20?
* fix link dl and cmake vesion * add dev container * docs: include PATH in the README * bump upload to v4 * fix hidden files
Description