-
Notifications
You must be signed in to change notification settings - Fork 487
Use gha oracle runners for build and test job #2277
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
Changes from all commits
87400e9
6bd9571
6ba104e
103b873
9ea8740
4a99482
0fa9e12
68178d1
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 |
|---|---|---|
|
|
@@ -70,20 +70,23 @@ func SetupElastic() (*elastic.Client, func(), error) { | |
| Type: "tmpfs", | ||
| TempfsOptions: &docker.TempfsOptions{ | ||
| SizeBytes: 100 * 1024 * 1024, | ||
| Mode: 0o777, | ||
| }, | ||
| }, | ||
| { | ||
| Target: "/opt/elasticsearch/volatile/logs", | ||
| Type: "tmpfs", | ||
| TempfsOptions: &docker.TempfsOptions{ | ||
| SizeBytes: 100 * 1024 * 1024, | ||
| Mode: 0o777, | ||
| }, | ||
| }, | ||
| { | ||
| Target: "/tmp", | ||
| Type: "tmpfs", | ||
| TempfsOptions: &docker.TempfsOptions{ | ||
| SizeBytes: 100 * 1024 * 1024, | ||
| Mode: 0o777, | ||
| }, | ||
| }, | ||
| } | ||
|
Member
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. The container logs from a failed run are listed below: container logsI opted to remove these since the lack of VM runner access made this difficult to debug.
Member
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. Instead of removing this, specifying the tmpfs mount permissions got the original test passing again. |
||
|
|
||
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.
Without this,
cc_clang_binaryfailed to link the stdlib or failed to find any stdlib header includes.