In scripts, explicitly choose what workspace member to build

Otherwise, building aquatic_udp fails on other OS:es than Linux
This commit is contained in:
Joakim Frostegård 2022-09-18 18:05:21 +02:00
parent e9f83403ba
commit 8beb13db29
8 changed files with 8 additions and 8 deletions

View file

@ -2,4 +2,4 @@
. ./scripts/env-native-cpu-without-avx-512 . ./scripts/env-native-cpu-without-avx-512
cargo run --release --bin aquatic_udp_bench -- $@ cargo run --release -p aquatic_udp_bench -- $@

View file

@ -2,4 +2,4 @@
. ./scripts/env-native-cpu-without-avx-512 . ./scripts/env-native-cpu-without-avx-512
cargo run --profile "release-debug" --bin aquatic_http_private -- $@ cargo run --profile "release-debug" -p aquatic_http_private -- $@

View file

@ -2,4 +2,4 @@
. ./scripts/env-native-cpu-without-avx-512 . ./scripts/env-native-cpu-without-avx-512
cargo run --profile "release-debug" --bin aquatic_http -- $@ cargo run --profile "release-debug" -p aquatic_http -- $@

View file

@ -2,4 +2,4 @@
. ./scripts/env-native-cpu-without-avx-512 . ./scripts/env-native-cpu-without-avx-512
cargo run --profile "release-debug" --bin aquatic_udp -- $@ cargo run --profile "release-debug" -p aquatic_udp -- $@

View file

@ -2,4 +2,4 @@
. ./scripts/env-native-cpu-without-avx-512 . ./scripts/env-native-cpu-without-avx-512
cargo run --profile "release-debug" --bin aquatic_ws -- $@ cargo run --profile "release-debug" -p aquatic_ws -- $@

View file

@ -2,4 +2,4 @@
. ./scripts/env-native-cpu-without-avx-512 . ./scripts/env-native-cpu-without-avx-512
cargo run --profile "release-debug" --bin aquatic_http_load_test -- $@ cargo run --profile "release-debug" -p aquatic_http_load_test -- $@

View file

@ -2,4 +2,4 @@
. ./scripts/env-native-cpu-without-avx-512 . ./scripts/env-native-cpu-without-avx-512
cargo run --profile "release-debug" --bin aquatic_udp_load_test -- $@ cargo run --profile "release-debug" -p aquatic_udp_load_test -- $@

View file

@ -2,4 +2,4 @@
. ./scripts/env-native-cpu-without-avx-512 . ./scripts/env-native-cpu-without-avx-512
cargo run --profile "release-debug" --bin aquatic_ws_load_test -- $@ cargo run --profile "release-debug" -p aquatic_ws_load_test -- $@