Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@ jobs:
ADDITIONAL_DEBS: clang lld
CC: "clang"
CXX: "clang++"
env:
ISOLATION: "shell"
runs-on: ubuntu-latest
container:
image: ros:jazzy-ros-core
steps:
- uses: actions/checkout@v4
- uses: 'ros-industrial/industrial_ci@master'
env: {{ matrix.env }}
env: ${{ matrix.env }}
5 changes: 0 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,8 @@ if(BUILD_TESTING)
set(cpplint_filters
"-whitespace/newline"
)
set(cpplint_root_paths
"${CMAKE_CURRENT_SOURCE_DIR}/include/"
)

ament_cpplint(
FILTERS "${cpplint_filters}"
ROOT "${cpplint_root_paths}"
)

find_package(ament_cmake_clang_format REQUIRED)
Expand Down
6 changes: 3 additions & 3 deletions test/generator/generator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
* limitations under the License.
*/

#ifndef TEST__GENERATOR__GENERATOR_HPP_
#define TEST__GENERATOR__GENERATOR_HPP_
#ifndef GENERATOR__GENERATOR_HPP_
#define GENERATOR__GENERATOR_HPP_

#include <limits>
#include <random>
Expand Down Expand Up @@ -1000,4 +1000,4 @@ class RandomDataGenerator
uint8_t ORDER_VECTOR_SIZE_UPPER_BOUND = 10;
};

#endif // TEST__GENERATOR__GENERATOR_HPP_
#endif // GENERATOR__GENERATOR_HPP_