Skip to content

Commit

Permalink
Adding AppVeyor badge to main README.rst
Browse files Browse the repository at this point in the history
- adding crash & burn test
  • Loading branch information
hkaiser committed Jul 4, 2017
1 parent eb11282 commit 94f222e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
8 changes: 8 additions & 0 deletions README.rst
Expand Up @@ -85,6 +85,14 @@ integration service tracks the current build status for the master branch:
:target: https://circleci.com/gh/STEllAR-GROUP/hpx/tree/master
:alt: HPX master branch build status

The `AppVeyor <https://ci.appveyor.com/project/hkaiser/hpx>`_ contiguous
integration tracks the status for Windows builds using the native Visual Studio 2017
toolchain: |appveyor_status|.

.. |appveyor_status| image:: https://ci.appveyor.com/api/projects/status/sd3ehemep05fhaj1/branch/master?svg=true
:target: https://ci.appveyor.com/project/hkaiser/hpx/branch/master
:alt: HPX master branch Windows build status

In any case, if you happen to run into problems we very much encourage and appreciate
any issue reports through the `issue tracker for this Github project
<http://github.com/STEllAR-GROUP/hpx/issues>`_.
Expand Down
11 changes: 10 additions & 1 deletion appveyor.yml
Expand Up @@ -36,8 +36,17 @@ install:
cd C:\projects\hpx
before_build:
- cmd: cmake -H. -Bbuild -A%PLATFORM% -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=C:/projects/vcpkg/scripts/buildsystems/vcpkg.cmake -DHPX_WITH_GIT_COMMIT=%APPVEYOR_REPO_COMMIT% -DHPX_WITH_PSEUDO_DEPENDENCIES=On -DHPX_WITH_VS_STARTUP_PROJECT=core -DHPX_WITH_EXAMPLES=On -DHPX_WITH_TESTS=On
- cmd: cmake -H. -Bbuild -A%PLATFORM% -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DCMAKE_TOOLCHAIN_FILE=C:/projects/vcpkg/scripts/buildsystems/vcpkg.cmake -DHPX_WITH_GIT_COMMIT=%APPVEYOR_REPO_COMMIT% -DHPX_WITH_PSEUDO_DEPENDENCIES=On -DHPX_WITH_EXAMPLES=On -DHPX_WITH_TESTS=Off -DHPX_WITH_RUNTIME=Off

build_script:
- cmd: cmake --build build --config Debug --target core
- cmd: cmake --build build --config Debug --target examples.quickstart.hello_world

test_script:
- cmd: >-
set PATH=%PATH%;C:\projects\vcpkg\installed\x64-windows\debug\bin
start build\Debug\bin\hello_world.exe -1 -t2
build\Debug\bin\hello_world.exe -0 -l2 -t2

0 comments on commit 94f222e

Please sign in to comment.