File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -54,10 +54,15 @@ jobs:
54
54
- name : Evaluate definitions
55
55
id : definitions
56
56
run : |
57
- export MSRV=$(rustup show | awk 'NF' | awk 'END{print $2}')
57
+ rustup show active-toolchain
58
+ export MSRV=$(rustup show active-toolchain | awk -F'-' '{print $1}')
59
+ if [ -z "$MSRV" ]; then
60
+ echo "Error: MSRV did not parse correctly"
61
+ exit 1
62
+ fi
58
63
echo "msrv=$MSRV"
59
64
echo "msrv=$MSRV" >> $GITHUB_OUTPUT
60
- export RAW_VERSIONS="stable beta $RUST_NIGHTLY_TOOLCHAIN $ MSRV"
65
+ export RAW_VERSIONS="stable beta $MSRV"
61
66
export VERSIONS=$(echo $RAW_VERSIONS | jq -scR 'rtrimstr("\n")|split(" ")|.')
62
67
echo "versions=$VERSIONS"
63
68
echo "versions=$VERSIONS" >> $GITHUB_OUTPUT
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ publish = false
12
12
bytes = " 1"
13
13
criterion = { version = " 0.5" , features = [" html_reports" ] }
14
14
crossbeam-channel = { version = " 0.5" }
15
+ half = " =2.4.1" # Can be unpinned when we move to MSRV 1.81
15
16
internet-checksum = " 0.2"
16
17
s2n-codec = { path = " ../../common/s2n-codec" , features = [" testing" ] }
17
18
s2n-quic-core = { path = " ../s2n-quic-core" , features = [" testing" ] }
You can’t perform that action at this time.
0 commit comments