├── .appveyor.yml ├── .doxygen.txt ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── include ├── consumer.h └── producer.h ├── src └── main.cpp └── test ├── test.cpp ├── test_consumer.cpp ├── test_main.cpp └── test_producer.cpp /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainfosec/ci_helloworld/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.doxygen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainfosec/ci_helloworld/HEAD/.doxygen.txt -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainfosec/ci_helloworld/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainfosec/ci_helloworld/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainfosec/ci_helloworld/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainfosec/ci_helloworld/HEAD/README.md -------------------------------------------------------------------------------- /include/consumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainfosec/ci_helloworld/HEAD/include/consumer.h -------------------------------------------------------------------------------- /include/producer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainfosec/ci_helloworld/HEAD/include/producer.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainfosec/ci_helloworld/HEAD/src/main.cpp -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainfosec/ci_helloworld/HEAD/test/test.cpp -------------------------------------------------------------------------------- /test/test_consumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainfosec/ci_helloworld/HEAD/test/test_consumer.cpp -------------------------------------------------------------------------------- /test/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainfosec/ci_helloworld/HEAD/test/test_main.cpp -------------------------------------------------------------------------------- /test/test_producer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainfosec/ci_helloworld/HEAD/test/test_producer.cpp --------------------------------------------------------------------------------