Skip to content
Snippets Groups Projects
Select Git revision
  • ad4a3f028a9db7697e3c4d572acf3d95996cda74
  • develop default protected
  • feature/variational-hydro
  • origin/stage/bouguettaia
  • feature/gmsh-reader
  • feature/reconstruction
  • save_clemence
  • feature/kinetic-schemes
  • feature/local-dt-fsi
  • feature/composite-scheme-sources
  • feature/composite-scheme-other-fluxes
  • feature/serraille
  • feature/composite-scheme
  • hyperplastic
  • feature/polynomials
  • feature/gks
  • feature/implicit-solver-o2
  • feature/coupling_module
  • feature/implicit-solver
  • feature/merge-local-dt-fsi
  • master protected
  • v0.5.0 protected
  • v0.4.1 protected
  • v0.4.0 protected
  • v0.3.0 protected
  • v0.2.0 protected
  • v0.1.0 protected
  • Kidder
  • v0.0.4 protected
  • v0.0.3 protected
  • v0.0.2 protected
  • v0 protected
  • v0.0.1 protected
33 results

.appveyor.yml

Blame
  • Stephane Del Pino's avatar
    Stéphane Del Pino authored
    subrepo:
      subdir:   "packages/CLI11"
      merged:   "b440890ea"
    upstream:
      origin:   "git@github.com:CLIUtils/CLI11.git"
      branch:   "master"
      commit:   "b440890ea"
    git-subrepo:
      version:  "0.4.3"
      origin:   "git@github.com:ingydotnet/git-subrepo.git"
      commit:   "2f68596"
    ad4a3f02
    History
    .appveyor.yml 845 B
    version: 2.1.1.{build}
    
    branches:
      only:
        - master
        - v1
    
    install:
      - git submodule update --init --recursive
      - py -3 --version
      - set PATH=C:\Python38-x64;C:\Python38-x64\Scripts;%PATH%
      - cmake --version
      - python --version
      - python -m pip --version
      - python -m pip install conan
      - conan user
      - conan --version
    
    build_script:
      - mkdir build
      - cd build
      - ps: cmake .. -DCLI11_WARNINGS_AS_ERRORS=ON -DCLI11_SINGLE_FILE_TESTS=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_GENERATOR="Visual Studio 14 2015"
      - ps: cmake --build .
      - cd ..
      - conan create . CLIUtils/CLI11
    
    test_script:
      - cd build
      - ps: ctest --output-on-failure -C Debug
    
    notifications:
      - provider: Webhook
        url: https://webhooks.gitter.im/e/0185e91c5d989a476d7b
        on_build_success: false
        on_build_failure: true
        on_build_status_changed: true