diff --git a/.circleci/config.yml b/.circleci/config.yml index 99d62d62..897d366e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -82,11 +82,6 @@ jobs: command: | cd /build-static/release make -j6 package - - run: - name: Run unit tests - command: | - cd /build-static/release - make tests - run: name: Prepare artifacts command: | diff --git a/docker/builder/modern-falco-builder.Dockerfile b/docker/builder/modern-falco-builder.Dockerfile index 6154aab5..eabcc073 100644 --- a/docker/builder/modern-falco-builder.Dockerfile +++ b/docker/builder/modern-falco-builder.Dockerfile @@ -29,8 +29,7 @@ RUN source scl_source enable devtoolset-9; \ make falco -j${MAKE_JOBS} RUN make package -# We need `make tests` and `make all` for integration tests. -RUN make tests -j${MAKE_JOBS} +# We need `make all` for integration tests. RUN make all -j${MAKE_JOBS} FROM scratch AS export-stage diff --git a/unit_tests/CMakeLists.txt b/unit_tests/CMakeLists.txt index 77d1675c..b63bafc9 100644 --- a/unit_tests/CMakeLists.txt +++ b/unit_tests/CMakeLists.txt @@ -61,5 +61,3 @@ add_executable(falco_unit_tests ${FALCO_UNIT_TESTS_SOURCES}) target_include_directories(falco_unit_tests ${FALCO_UNIT_TESTS_INCLUDES}) target_link_libraries(falco_unit_tests ${FALCO_UNIT_TESTS_DEPENDENCIES}) add_dependencies(falco_unit_tests ${FALCO_UNIT_TESTS_LIBRARIES}) - -# add_test(multiply_gtests falco_unit_tests)