appveyor.yml 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. image:
  2. - Ubuntu2204
  3. - Visual Studio 2017
  4. - Visual Studio 2019
  5. - Visual Studio 2022
  6. configuration:
  7. - Debug
  8. - Release
  9. environment:
  10. PYTHON: "C:\\Python38-x64"
  11. PY_SCRIPTS: "C:\\Python38-x64\\Scripts"
  12. APPVEYOR_YML_DISABLE_PS_LINUX: true
  13. matrix:
  14. - SHARED: True
  15. - SHARED: False
  16. platform:
  17. - x64
  18. stack: python 3.11
  19. for:
  20. -
  21. install:
  22. - cmd: set PATH=%PY_SCRIPTS%;%PATH%
  23. - cmd: echo %PATH%
  24. - cmd: "%PYTHON%\\python.exe -m pip install conan cmake"
  25. - sh: python3 -m pip install conan cmake
  26. - sh: sudo apt-get update
  27. - sh: sudo apt-get install -y lcov curl libx11-xcb-dev libfontenc-dev libxaw7-dev libxkbfile-dev libxmu-dev libxmuu-dev libxpm-dev libxres-dev libxt-dev libxv-dev libxxf86vm-dev libxcb-glx0-dev libxcb-render-util0-dev libxcb-xkb-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xinerama0-dev libxcb-dri3-dev libxcb-cursor-dev libxcb-dri2-0-dev libxcb-dri3-dev libxcb-present-dev libxcb-composite0-dev libxcb-ewmh-dev libxcb-res0-dev libxcb-util0-dev libglu1-mesa-dev
  28. build_script:
  29. - cmake --version
  30. - conan profile detect
  31. test_script:
  32. - cmd: cmake -E env ROTOR_BUILD_EXAMPLES=ON CXXFLAGS="/permissive- /wd4251 /W4 /w14640 /wd4068" conan create . -s build_type=%CONFIGURATION% -o shared=%SHARED% -s compiler.cppstd=17 -c tools.build:skip_test=False -o enable_ev=True -o enable_fltk=True -o boost/*:without_chrono=True -o boost/*:without_container=True -o boost/*:without_context=True -o boost/*:without_contract=True -o boost/*:without_coroutine=True -o boost/*:without_exception=True -o boost/*:without_fiber=True -o boost/*:without_graph=True -o boost/*:without_graph_parallel=True -o boost/*:without_iostreams=True -o boost/*:without_json=True -o boost/*:without_locale=True -o boost/*:without_log=True -o boost/*:without_math=True -o boost/*:without_mpi=True -o boost/*:without_nowide=True -o boost/*:without_python=True -o boost/*:without_random=True -o boost/*:without_serialization=True -o boost/*:without_stacktrace=True -o boost/*:without_test=True -o boost/*:without_thread=True -o boost/*:without_timer=True -o boost/*:without_type_erasure=True -o boost/*:without_url=True -o boost/*:without_wave=True -o *:shared=True --version 0.30 --build=missing
  33. - sh: env
  34. - sh: if [ "$CONFIGURATION $SHARED" == "Debug False" ]; then export COVERAGE_FLAGS="-fprofile-arcs -ftest-coverage --coverage"; else export COVERAGE_FLAGS=""; fi
  35. - sh: echo COVERAGE_FLAGS=$COVERAGE_FLAGS
  36. - sh: cmake -E env ROTOR_BUILD_EXAMPLES=ON CXXFLAGS="$COVERAGE_FLAGS -Wall -Wextra -Wno-unknown-pragmas -Wnon-virtual-dtor -pedantic -Wcast-align -Woverloaded-virtual -Woverloaded-virtual -Wlogical-op -Wnull-dereference -Wuseless-cast -Wformat=2 -Wduplicated-cond -Wsign-conversion -Wmisleading-indentation" ROTOR_INSPECT_DELIVERY=99 conan create . -s build_type=$CONFIGURATION -o shared=$SHARED -s compiler.cppstd=17 -c tools.build:skip_test=False -o enable_ev=True -o enable_fltk=True -o boost/*:without_chrono=True -o boost/*:without_container=True -o boost/*:without_context=True -o boost/*:without_contract=True -o boost/*:without_coroutine=True -o boost/*:without_exception=True -o boost/*:without_fiber=True -o boost/*:without_graph=True -o boost/*:without_graph_parallel=True -o boost/*:without_iostreams=True -o boost/*:without_json=True -o boost/*:without_locale=True -o boost/*:without_log=True -o boost/*:without_math=True -o boost/*:without_mpi=True -o boost/*:without_nowide=True -o boost/*:without_python=True -o boost/*:without_random=True -o boost/*:without_serialization=True -o boost/*:without_stacktrace=True -o boost/*:without_test=True -o boost/*:without_thread=True -o boost/*:without_timer=True -o boost/*:without_type_erasure=True -o boost/*:without_url=True -o boost/*:without_wave=True -o *:shared=True --version 0.30 --build=missing
  37. after_test:
  38. - sh: if [ "$CONFIGURATION $SHARED" == "Debug False" ]; then lcov --directory . --capture --output-file coverage.info && lcov --remove coverage.info '*/tests/*' '*/examples/*' '/usr/*' --output-file coverage.info.cleaned && rm coverage.info && genhtml -o coverage coverage.info.cleaned && bash <(curl -s https://codecov.io/bash) -X gcov; fi