Skip to content

Releases: ros-tooling/action-ros-ci

0.0.14: Windows build improvements and rosdep distro updates

18 Mar 02:24
a1b3f13
Compare
Choose a tag to compare

The action now sets the rosdep distro based on binary installation.
Some improvements to the Windows CI were also made.

0.0.13: Fix undefined prefix in colcon lcov-result

23 Jan 00:34
e25410b
Compare
Choose a tag to compare

execBashCommand would previously fail if no commandPrefix was explicitly passed to it.
This release properly sets the commandPrefix to an empty string when not set by the user as opposed to undefined.
The release also added some unit tests to catch regressions and pre-commit hooks to support contributors with preparing clean PRs.

0.0.12: Greenkeeper/@types/jest 24.0.24 (#52)

23 Dec 07:53
e5dfdc3
Compare
Choose a tag to compare
* chore(package): update @types/jest to version 24.0.24

* chore(package): update lockfile package-lock.json

Co-authored-by: greenkeeper[bot] <23040076+greenkeeper[bot]@users.noreply.github.com>

0.0.11: Add ROS 1/2 prebuilt install support (#43)

10 Dec 07:31
b4b29d5
Compare
Choose a tag to compare

0.0.10: Fix coverage support (#42)

06 Dec 04:20
2bd4324
Compare
Choose a tag to compare

0.0.9: Add support for building and testing multiple packages (#39)

04 Dec 03:06
d4bfc7e
Compare
Choose a tag to compare

0.0.8: Add Microsoft Windows support (#37)

03 Dec 03:08
9a0f4ea
Compare
Choose a tag to compare
On Windows, we do not run `rosdep update' because it will not run
properly (os.geteuid() is missing, and sudo is not available).
We also stop relying on '*' in NPM scripts defined in package.json as
they are not expended in a similar way on Windows.

Signed-off-by: Thomas Moulard <[email protected]>

0.0.7: Fix code coverage support (#30)

12 Nov 04:36
110ad99
Compare
Choose a tag to compare
There was a logical error in the code. Instead of writing:

array1 = array1.concat(array2);

...to append array2 to array1. The code was:

array1.concat(array2);

...which does not do anything.

As a result, it was impossible to actually use a mixin.

This also fixes another issue: colcon lcov-result is failling for
packages without coverage info, so we need to pass --packages-select
when running it.

Signed-off-by: Thomas Moulard <[email protected]>

0.0.6: Add colcon install bin dir to PATH to workaround ament_cmake issue (#27)

06 Nov 18:47
091e547
Compare
Choose a tag to compare

0.0.5: Add flags to generate Python code coverage (#25)

05 Nov 19:27
ce49db6
Compare
Choose a tag to compare