We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0931649 commit 8a7b5baCopy full SHA for 8a7b5ba
build_container.sh
@@ -79,6 +79,18 @@ fi
79
80
cargo install cargo-llvm-cov
81
82
+# Install the codecov.io uploader. Not available on riscv64, so skip there
83
+if [ "$ARCH" != "riscv64" ]; then
84
+ pushd /usr/local/bin
85
+ if [ "$ARCH" = "x86_64" ]; then
86
+ curl -O https://uploader.codecov.io/latest/linux/codecov
87
+ else
88
+ curl -O https://uploader.codecov.io/latest/aarch64/codecov
89
+ fi
90
+ chmod +x codecov
91
+ popd
92
+fi
93
+
94
# Install some dependencies required by vhost-device crates but not available
95
# in Ubuntu repos.
96
# Some of these do not support riscv64, since vhost-device crates do not
0 commit comments