Skip to content

Tags: seanyen/action-ros-ci

Tags

0.0.13

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Remove undefined prefix in colcon lcov (#63)

* Remove undefined prefix

* Add tests for execBashCommand

* Add comment for jest

* newline

Signed-off-by: Anas Abou Allaban <allabana@amazon.com>

0.0.12

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Greenkeeper/@types/jest 24.0.24 (#52)

* 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

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add ROS 1/2 prebuilt install support (#43)

Signed-off-by: Thomas Moulard <tmoulard@amazon.com>

0.0.10

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix coverage support (#42)

Signed-off-by: Thomas Moulard <tmoulard@amazon.com>

0.0.9

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add support for building and testing multiple packages (#39)

Fix #33

Signed-off-by: Thomas Moulard <tmoulard@amazon.com>

0.0.8

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add Microsoft Windows support (#37)

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 <tmoulard@amazon.com>

0.0.7

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix code coverage support (#30)

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 <tmoulard@amazon.com>

0.0.6

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add colcon install bin dir to PATH to workaround ament_cmake issue (#27)

Fix #26

Signed-off-by: Thomas Moulard <tmoulard@amazon.com>

0.0.5

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add flags to generate Python code coverage (#25)

Signed-off-by: Thomas Moulard <tmoulard@amazon.com>

0.0.4

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Upload colcon logs (#19)

Signed-off-by: Thomas Moulard <tmoulard@amazon.com>