Skip to content
This repository was archived by the owner on Nov 6, 2024. It is now read-only.

Commit 04347ed

Browse files
committed
Move kvm-bindings crate to own directory
In preparation for creating a common workspace for kvm-bindings and kvm-ioctls, move the kvm-bindings crate to its own directory. A workspace Cargo.toml is not added yet because it makes git detect it as a modification and treat kvm-bindings/Cargo.toml as a new file instead of a rename. Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
1 parent cbd2e65 commit 04347ed

20 files changed

+4
-4
lines changed

.buildkite/custom-tests.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"tests": [
33
{
44
"test_name": "build-fam-gnu",
5-
"command": "cargo build --release --features=fam-wrappers",
5+
"command": "cd kvm-bindings && cargo build --release --features=fam-wrappers",
66
"platform": [
77
"x86_64",
88
"aarch64",
@@ -11,15 +11,15 @@
1111
},
1212
{
1313
"test_name": "build-fam-musl",
14-
"command": "cargo build --release --features=fam-wrappers --target {target_platform}-unknown-linux-musl",
14+
"command": "cd kvm-bindings && cargo build --release --features=fam-wrappers --target {target_platform}-unknown-linux-musl",
1515
"platform": [
1616
"x86_64",
1717
"aarch64"
1818
]
1919
},
2020
{
2121
"test_name": "build-serde-gnu",
22-
"command": "cargo build --release --features=serde",
22+
"command": "cd kvm-bindings && cargo build --release --features=serde",
2323
"platform": [
2424
"x86_64",
2525
"aarch64",
@@ -28,7 +28,7 @@
2828
},
2929
{
3030
"test_name": "build-serde-musl",
31-
"command": "cargo build --release --features=serde --target {target_platform}-unknown-linux-musl",
31+
"command": "cd kvm-bindings && cargo build --release --features=serde --target {target_platform}-unknown-linux-musl",
3232
"platform": [
3333
"x86_64",
3434
"aarch64"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)