Codebase list cppad / lintian-fixes/main appveyor.yml
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

appveyor.yml @lintian-fixes/mainraw · history · blame

# -----------------------------------------------------------------------------
# CppAD: C++ Algorithmic Differentiation: Copyright (C) 2003-18 Bradley M. Bell
#
# CppAD is distributed under the terms of the
#              Eclipse Public License Version 2.0.
#
# This Source Code may also be made available under the following
# Secondary License when the conditions for such availability set forth
# in the Eclipse Public License, Version 2.0 are satisfied:
#       GNU General Public License, Version 2.0 or later.
# -----------------------------------------------------------------------------
#
# build platform, i.e. x86, x64, Any CPU. This setting is optional.
platform:
  - x64

# msys2 environment
environment:
  matrix:
    - HOST_ARCH_ARG: --host=x86_64-w64-mingw32
      ADD_PATH: /mingw64/bin

# scripts that run after cloning repository
install:
  - C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw-w64-x86_64-cmake"

#
# run custom scripts instead of automatic MSBuild
build_script:
  - C:\msys64\usr\bin\bash -lc "
      cd $APPVEYOR_BUILD_FOLDER;
      export PATH=$PATH:$ADD_PATH;
      bin/appveyor.sh
    "
#
notifications:
  - provider: Email
    to:
     - bradbell@seanet.com
    on_build_success: true
    on_build_failure: true