File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 4242 # examples is populated by
4343 # find all child folders in the examples directory
4444 # jq -R - raw content is passed in (not json, just strings)
45- # jq -sc - slurp the content into a single object, -c enabled compact
46- # output onto a single line, github will fail to parse the multi line.
45+ # jq -s - slurp the content into an object
46+ # jq '. += ' adds the s2n-quic-xdp crate to the list of crates we build
47+ # Many of the xdp crates have much more complex build processes, so we
48+ # don't try to build all of them.
49+ # jq -c - output the object in (c)ompact mode on a single line, github
50+ # will fail to parse multi line output
4751 #
4852 # the output is echo'd to make debugging easier
4953 - name : Evaluate definitions
5963 export EXAMPLES=$(find examples/ -maxdepth 1 -mindepth 1 -type d | jq -R | jq -sc)
6064 echo "examples=$EXAMPLES"
6165 echo "examples=$EXAMPLES" >> $GITHUB_OUTPUT
62- export CRATES=$(find quic common -name *Cargo.toml | jq -R | jq -sc )
66+ export CRATES=$(find quic common -name *Cargo.toml | jq -R | jq -s | jq '. += ["tools/xdp/s2n-quic-xdp/Cargo.toml"]' | jq -c )
6367 echo "crates=$CRATES"
6468 echo "crates=$CRATES" >> $GITHUB_OUTPUT
6569
Original file line number Diff line number Diff line change 11[workspace ]
22members = [" s2n-quic-xdp" , " tester" , " xtask" ]
3+ resolver = " 2"
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ errno = "0.3"
2020libc = " 0.2"
2121s2n-codec = { version = " =0.5.0" , path = " ../../../common/s2n-codec" }
2222s2n-quic-core = { version = " =0.22.0" , path = " ../../../quic/s2n-quic-core" }
23- tokio = { version = " 1" , optional = true }
23+ tokio = { version = " 1" , features = [ " net " ], optional = true }
2424
2525[dev-dependencies ]
2626bolero = " 0.9"
You can’t perform that action at this time.
0 commit comments