File: appveyor.yml

package info (click to toggle)
cppad 2026.00.00.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,584 kB
  • sloc: cpp: 112,960; sh: 6,146; ansic: 179; python: 71; sed: 12; makefile: 10
file content (41 lines) | stat: -rw-r--r-- 1,086 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
# SPDX-FileCopyrightText: Bradley M. Bell <bradbell@seanet.com>
# SPDX-FileContributor: 2003-22 Bradley M. Bell
# ----------------------------------------------------------------------------
#
# build platform, i.e. x86, x64, Any CPU. This setting is optional.
platform:
  - x64

# branches to build on push
branches:
  only:
    - master

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

# 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 make check install uninstall
    "
#
notifications:
  - provider: Email
    to:
     - bradbell@seanet.com
    on_build_status_changed: true
    on_build_failure: true
    on_build_success: false