File: appveyor.yml

package info (click to toggle)
faust 2.14.4~repack2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 276,136 kB
  • sloc: cpp: 231,578; ansic: 15,403; sh: 10,871; java: 6,917; objc: 4,085; makefile: 3,002; cs: 1,077; ruby: 951; python: 885; xml: 550; yacc: 516; lex: 233; lisp: 201
file content (22 lines) | stat: -rw-r--r-- 637 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

image: Visual Studio 2015
platform: x64
version: 1.0.{build}

build_script:
  - cd build
  - mkdir win32 win64
  - cd win64
  - cmake -DUSE_LLVM_CONFIG=off -DLLVM_DIR=C:\Libraries\llvm-5.0.0\lib\cmake\llvm -C ../backends/most.cmake -C ../targets/regular.cmake .. -G "Visual Studio 14 2015 Win64"
  - cmake --build . --config Release
  - ls -l ../bin/Release

notifications:
  - provider: Email
    to:
      - '{{commitAuthorEmail}}'
      - orlarey@grame.fr
    subject: 'Build {{status}}: {{projectName}} {{buildVersion}}'
    on_build_success: false
    on_build_failure: true
    on_build_status_changed: true