-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml.old
69 lines (57 loc) · 1.72 KB
/
.appveyor.yml.old
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
image:
- Visual Studio 2019
# clone directory
clone_folder: c:\projects\wxMaximaMaxima
# Do not clone the entire git repository
clone_depth: 15
cache:
# The build directory is only cached for the .pdb files. Other files are removed.
- C:\ProgramData\chocolatey\bin -> appveyor.yml
- C:\ProgramData\chocolatey\lib -> appveyor.yml
# Do not cache the build itself - we only care about the install!
environment:
# The wxWidgets version as referred to in the source package
WXVERSION: 3.1.3
# The wxWidgets version as referred to in the build folder
# Typically it'd be the wxWidgets version with an optional suffix
# to indicate build "epoch". The epoch changes are used to invalidate
# a cached wxWidgets build and force a rebuild.
matrix:
- CMAKEGEN: "MinGW Makefiles"
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
WXBUILDVER: 3.1.3_7_MinGW
cxx_path: 'C:\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin'
CMAKECXXFLAGS: '"-static -static-libgcc -static-libstdc++'
matrix:
fast_finish: true
# branches to build
branches:
except:
- gh_pages
- DebianPackaging
- DebianPackaging_NightlyBuild
install:
- set PATH=C:\MinGW\bin;%PATH%
- ps: |
echo '- Installing pandoc...'
choco install -y --no-progress pandoc
choco install -y --no-progress 7zip.install
choco install -y --no-progress nsis
build_script:
- ps: |
cmake -G "$env:CMAKEGEN" .
cmake --build .
on_failure:
- ps: |
7z a FailureDump.zip *
Push-AppveyorArtifact FailureDump.zip
artifacts:
- path: '*.exe'
name: wxMaxima_Installer
deploy:
- provider: Environment
name: GithubReleases
draft: false
prerelease: false
on:
APPVEYOR_REPO_TAG: true