Skip to content

Commit db8fd70

Browse files
authored
bump to opte version 41, add v4 over v6 static routes (#743)
1 parent 1ff7d4c commit db8fd70

43 files changed

Lines changed: 776 additions & 494 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
#!/bin/bash
2+
#:
3+
#: name = "no-omicron-deps-in-client-crates"
4+
#: variety = "basic"
5+
#: target = "helios-2.0"
6+
#: rust_toolchain = "stable"
7+
#:
8+
9+
# The client and api-types crates are consumed by omicron. Maghemite
10+
# also consumes omicron. For the maghemite crates that omicron consumes
11+
# we cannot have omicron dependencies as this leads to a hot mess for
12+
# integration.
13+
14+
function omicron_dep_check {
15+
echo "checking $1"
16+
set -e
17+
pushd "$1"
18+
set +e
19+
tree_output=$(cargo tree -e normal --all-features)
20+
if grep omicron <<< "${tree_output}"; then
21+
echo "$1 may not depend on omicron"
22+
exit 1
23+
fi
24+
popd
25+
}
26+
27+
omicron_dep_check mg-admin-client
28+
omicron_dep_check ddm-admin-client
29+
omicron_dep_check ddm-api-types
30+
omicron_dep_check mg-api-types
31+
omicron_dep_check mg-api-types/versions

0 commit comments

Comments
 (0)