[go: up one dir, main page]

File: appveyor.yml

package info (click to toggle)
solvespace 2.3%2Brepack1-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 7,752 kB
  • sloc: cpp: 111,351; ansic: 493; xml: 22; sh: 12; makefile: 3
file content (28 lines) | stat: -rw-r--r-- 994 bytes parent folder | download | duplicates (3)
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
version: 2.2.{build}
clone_depth: 1
before_build:
  - git submodule update --init
  - mkdir build
  - cd build
  - set tag=x%APPVEYOR_REPO_TAG_NAME%
  - if %tag:~,2% == xv (set BUILD_TYPE=RelWithDebInfo) else (set BUILD_TYPE=Debug)
  - cmake -G"Visual Studio 12" -T v120_xp -DCMAKE_BUILD_TYPE=%BUILD_TYPE% ..
build_script:
  - msbuild "src\solvespace.vcxproj" /verbosity:minimal /property:Configuration=%BUILD_TYPE% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
artifacts:
  - path: build\src\Debug\solvespace.exe
    name: solvespace.exe
  - path: build\src\Debug\solvespace.pdb
    name: solvespace.pdb
  - path: build\src\RelWithDebInfo\solvespace.exe
    name: solvespace.exe
  - path: build\src\RelWithDebInfo\solvespace.pdb
    name: solvespace.pdb
deploy:
  - provider: GitHub
    auth_token:
      secure: P9/pf2nM+jlWKe7pCjMp41HycBNP/+5AsmE/TETrDUoBOa/9WFHelqdVFrbRn9IC
    description: ""
    artifact: solvespace.exe
    on:
      appveyor_repo_tag: true