mirror of
https://github.com/wentasah/ros2nix.git
synced 2025-06-09 07:42:23 +03:00
17 lines
407 B
Bash
17 lines
407 B
Bash
# -*- bats-mode -*-
|
|
|
|
# shellcheck disable=SC2046
|
|
|
|
bats_require_minimum_version 1.5.0
|
|
load common.bash
|
|
|
|
@test "autoware" {
|
|
rm -rf ws # we don't use out simple workspace
|
|
git clone https://github.com/autowarefoundation/autoware.git
|
|
cd autoware
|
|
mkdir src
|
|
vcs import src < autoware.repos
|
|
cd ..
|
|
|
|
ros2nix --output-as-nix-pkg-name --fetch $(find -name package.xml|grep -v ament_cmake)
|
|
}
|