forked from falltergeist/int2ssl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.appveyor.yml
More file actions
34 lines (29 loc) · 754 Bytes
/
.appveyor.yml
File metadata and controls
34 lines (29 loc) · 754 Bytes
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
version: '8.4.4-{build}'
environment:
matrix:
- BUILD_TYPE: Release
COMPILER: MinGW
PLATFORM: Win32
WITH_MPFR: yes
install:
- set PATH=C:\MinGW\bin;%PATH%
# Rename sh.exe as sh.exe in PATH interferes with MinGW
- rename "C:\Program Files\Git\usr\bin\sh.exe" "sh2.exe"
build_script:
- mkdir build
- cd build
- cmake -G "MinGW Makefiles" -DCMAKE_PREFIX_PATH=C:\MinGW -DCMAKE_BUILD_TYPE=%BUILD_TYPE% ..
- cmake --build . --config %BUILD_TYPE%
artifacts:
- path: build/int2ssl.exe
name: Windows binary
type: File
deploy:
provider: GitHub
auth_token:
secure: "WQRWH4fHMtEyK8upN1h+QW3UGhpiCclabCZYFaCjrqIAjglWt7E64rPaSf2unPZz"
artifact: /.*/
draft: false
prerelease: false
on:
appveyor_repo_tag: true