-
Notifications
You must be signed in to change notification settings - Fork 17
fix: resolve static linking failures with OpenSSL and duplicate symbols #438
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: master
Are you sure you want to change the base?
Changes from all commits
25494bf
dff39dd
232f300
45bcc40
015dd2c
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 |
|---|---|---|
|
|
@@ -9,7 +9,6 @@ on: | |
| env: | ||
| CARGO_TERM_COLOR: always | ||
| # Should include `INTEGRATION_TEST_BIN` from the `Makefile` | ||
| # TODO: Remove `build/libscylla-cpp-driver.*` after https://github.com/scylladb/cpp-rs-driver/issues/164 is fixed. | ||
| INTEGRATION_TEST_BIN: | | ||
| build/cassandra-integration-tests | ||
| build/libscylla-cpp-driver.* | ||
|
Comment on lines
-12
to
15
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤔 You removed the TODO but didn't do what it was saying.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Move it out ot a separate commit with explanation. |
||
|
|
@@ -45,6 +44,11 @@ jobs: | |
| id: build-integration-test-bin | ||
| run: make build-integration-test-bin | ||
|
|
||
| - name: Verify static linking builds (regression test for issue #164) | ||
| run: | | ||
| make build-static-integration-test-bin | ||
| rm -rf build-static | ||
|
|
||
| - name: Save integration test binary | ||
| uses: actions/cache/save@v4 | ||
| id: save-integration-test-bin | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| .vscode/ | ||
| .zed | ||
| build/ | ||
| build-static/ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔧 This is added to .gitignore only in commit |
||
| build-macos/ | ||
| **/build/ | ||
| **/build-macos/ | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.