-
Couldn't load subscription status.
- Fork 293
CP-48838: Various build system and testing improvements #4939
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
Closed
edwintorok
wants to merge
24
commits into
xapi-project:feature/perf
from
edwintorok:private/edvint/maintenance
Closed
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
fdb0da9
[maintenance]: quicktest: add the ability to run without XAPI
edwintorok 8eddc8e
CP-41667: forkexecd: use a string map for env and fix quoting for pro…
edwintorok b74478d
[maintenance] fe_test.sh: reduce minimum sleep time
edwintorok 27e73a5
CP-41667: fe_systemctl: add start_templated and set_properties
edwintorok a077192
[maintenance]: bump dune language version
edwintorok 43f768e
[maintenance] bump minimum dune language version to 3.7
edwintorok 878329e
[maintenance]: do not build bytecode versions of internal libraries
edwintorok ff21d4d
[maintenance]: remove xapi-xenopsd.opam
edwintorok 36615c9
[maintenance]: drop {gzip,zstd,xapi-compression}.opam
edwintorok 6afabaf
[maintenance]: make pciutil internal library
edwintorok 2a07b7f
[maintenance] cdrommon: minimize dependencies
edwintorok 7203430
[maintenance]: disable implicit transitive deps
edwintorok 37de50c
[maintenance]: xapi-aux does not need to depend on xapi-types
edwintorok 9f11651
[maintenance]: preprocess only modules containing @@deriving
edwintorok e1468f3
[maintenance]: split server.ml into separate library
edwintorok bdf835b
[maintenance]: remove dependency between most tests and server.ml
edwintorok 99d3ad2
[maintenance]: remove API.API
edwintorok b0eba7f
[maintenance]: reduce timeout in fe_test
edwintorok 3fd3847
[maintenance]: reduce basic-rpc-test time
edwintorok 15d515c
[maintenance]: try to reconnect to message-switch every 0.5s
edwintorok fb99a47
[maintenance]: speed up fe_test.sh when max_fds is very large
edwintorok 869853c
fix build after merge: implicit transitive deps is disabled
edwintorok 47a4d85
fe_test.sh: reliably detect when server is listening on the socket
edwintorok f17dd60
Forkexecd: shut down the socket before closing in the child
edwintorok File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| (lang dune 2.0) | ||
| (lang dune 3.7) | ||
|
|
||
| (implicit_transitive_deps false) | ||
| (formatting (enabled_for ocaml)) |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| (library | ||
| (name certificate_check) | ||
| (modules certificate_check) | ||
| (modes best) | ||
| (libraries | ||
| astring | ||
| xapi-client | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| (library | ||
| (modes best) | ||
| (foreign_stubs | ||
| (language c) | ||
| (names xa_auth xa_auth_stubs) | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,9 +5,6 @@ | |
| (package xapi) | ||
| (libraries | ||
| cdrom | ||
| threads | ||
| unix | ||
| xapi-stdext-unix | ||
| ) | ||
| ) | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.