9f19ed2ac8
We need to cleanly split off "test dependencies" that we install inside the cosa pod from builds (where we won't have `cargo`) from the build time where we use the cosa buildroot image. Prep for using https://cxx.rs
7 lines
177 B
Bash
Executable File
7 lines
177 B
Bash
Executable File
#!/usr/bin/bash
|
|
# Install build dependencies not in the cosa buildroot already
|
|
set -xeuo pipefail
|
|
if ! command -v cxxbridge; then
|
|
cargo install --root=/usr cxxbridge-cmd
|
|
fi
|