Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some functions when using cgreen with its namespace in C++. #325

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Fix some functions when using cgreen with its namespace in C++.

612cc3c
Select commit
Loading
Failed to load commit list.
Open

Fix some functions when using cgreen with its namespace in C++. #325

Fix some functions when using cgreen with its namespace in C++.
612cc3c
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Jan 7, 2024 in 2m 9s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #325 Fix some functions when using cgreen with its namespace in C++..
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has eight jobs, running in parallel.

Job Compiler ENV OS State
750.1 gcc CGREEN_WITH_STATIC_LIBRARY="OFF" Linux passed
750.2 gcc CGREEN_WITH_STATIC_LIBRARY="ON" Linux passed
750.3 clang CGREEN_WITH_STATIC_LIBRARY="OFF" Linux passed
750.4 clang CGREEN_WITH_STATIC_LIBRARY="ON" Linux passed
750.5 gcc CGREEN_WITH_STATIC_LIBRARY="OFF" Linux passed
750.6 gcc CGREEN_WITH_STATIC_LIBRARY="ON" Linux passed
750.7 clang CGREEN_WITH_STATIC_LIBRARY="OFF" Linux passed
750.8 clang CGREEN_WITH_STATIC_LIBRARY="ON" Linux passed

Build Configuration

Build Option Setting
Language C
Operating System Linux (Focal)
Compiler Versions gcc, clang
Build Configuration
{
  "language": "c",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "arch": [
    "amd64",
    "s390x"
  ],
  "compiler": [
    "gcc",
    "clang"
  ],
  "env": [
    "jobs={:CGREEN_WITH_STATIC_LIBRARY=>\"\\\"OFF\\\"\"}={:CGREEN_WITH_STATIC_LIBRARY=>\"\\\"ON\\\"\"}"
  ],
  "addons": {
    "apt": {
      "packages": [
        "cmake",
        "lcov",
        "g++",
        "valgrind",
        "libxml2-dev"
      ]
    }
  },
  "before_install": [
    "if [[ $CC == gcc ]] ; then export CXX=g++ ; else export CXX=clang++ ; fi",
    "$CC --version",
    "$CXX --version",
    "gem install coveralls-lcov",
    "if [ \"$CC\" = \"gcc\" ]; then export WITH_GCOV=ON; else WITH_GCOV=OFF; fi"
  ],
  "script": [
    "mkdir -p build",
    "cd build",
    "cmake -DCGREEN_WITH_XML:BOOL=OFF -DCGREEN_WITH_LIBXML2:BOOL=OFF -DCGREEN_WITH_UNIT_TESTS:BOOL=ON -DCGREEN_WITH_STATIC_LIBRARY:BOOL=$CGREEN_WITH_STATIC_LIBRARY -DCGREEN_INTERNAL_WITH_GCOV:BOOL=OFF .. && make -j2 && ctest --output-on-failure",
    "rm -f CMakeCache.txt",
    "cmake -DCGREEN_WITH_UNIT_TESTS:BOOL=ON -DCGREEN_WITH_STATIC_LIBRARY:BOOL=$CGREEN_WITH_STATIC_LIBRARY -DCGREEN_INTERNAL_WITH_GCOV:BOOL=$WITH_GCOV .. && make -j2 && ctest --output-on-failure"
  ],
  "after_success": [
    "if [ \"$CC\" = \"gcc\" ]; then lcov -d tests -d src -d tools -base-directory .. -c -o coverage.info; lcov --remove coverage.info '/usr/*' -o coverage.info; cd ..; coveralls-lcov build/coverage.info; fi"
  ],
  "notifications": {
    "slack": [
      {
        "rooms": [
          {
            "secure": "Tobw+sqwGWscQo/mnBiO/+CQDMu8of5kXUhFKK1GblxTqxvJGGRVVvjt5ZlYaTyJD6YCzaVAO9hSjMvebnTTIqqP5WFmhpO3Du3khZJhFjzhqfjIUmK4S0rAMs3BBvLTGAUa0Hvnrt1VOkOJUdwdSW8nmnw9uFx3rVCthAOLkQugUY4s8tCc/QHBJPUSqdKntTq9e4bapaMl4gREPFvtneOyN7LQp0JtI/nyrdTVlONaqkPv7M8sEC7a6ec6RK/AiEurp8XczNW0ifTwqCg2y/sLfnRg+wzG1H9sMmzs+Kx7akcGdGzi/rqWRnBDF3mKL4pt8YhmBy/znDnMAR559puRiyz6ZZhlBKRviZrsfQmC0F3IyTZY/S3SjvatT9DrAIsHDLbDNxRxzO0GC+cpkq4HU8VnF4rQ31VVb75igMHzgw3SvDOqsZ3g0jPiBybEi0jVRUzmDWrw7p6qtl5hwQam6dxfmO6xXpwOTqPI9WQEOZeZfOw7eIeEbpB5wJ723z2cEwutoDdConIZElJBKjcjFp5rjR/yG94H/0OEgCmC/JRrdd71BB9vPh4SO40RvKkxV0adY7Xk2vkAxwLFhxS7QIdNfyQBFFEBnR+JFBHE+9XwEH1JmaAbrSYgg0+vVUZPOuqcqvz+9PUTlAb5rqYB97XEbF//5t8URrriuB0="
          }
        ]
      }
    ]
  }
}