mirror of
https://github.com/wentasah/ros2nix.git
synced 2025-06-09 15:52:23 +03:00
18 lines
407 B
Text
18 lines
407 B
Text
![]() |
# -*- 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)
|
||
|
}
|