-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.travis.yml
42 lines (38 loc) · 1.3 KB
/
.travis.yml
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
language: cpp
os: windows
branches:
only:
- master
- release
- /^v\d+\.\d+\.\d+.*$/
before_install:
- |-
case $TRAVIS_OS_NAME in
windows)
[[ ! -f C:/tools/msys64/msys2_shell.cmd ]] && rm -rf C:/tools/msys64
choco uninstall -y mingw
choco upgrade --no-progress -y msys2
export msys2='cmd //C RefreshEnv.cmd '
export msys2+='& set MSYS=winsymlinks:nativestrict '
export msys2+='& C:\\tools\\msys64\\msys2_shell.cmd -defterm -no-start'
export mingw64="$msys2 -mingw64 -full-path -here -c "\"\$@"\" --"
export mingw32="$msys2 -mingw32 -full-path -here -c "\"\$@"\" --"
export msys2+=" -msys2 -c "\"\$@"\" --"
## Install more MSYS2 packages from https://packages.msys2.org/base here
taskkill //IM gpg-agent.exe //F # https://travis-ci.community/t/4967
export PATH=/C/tools/msys64/mingw64/bin:$PATH
;;
esac
script:
- $mingw64 bash tools/liberime-msys2-build.sh --archive=liberime-$TRAVIS_TAG-windows-x86_64
- $mingw32 bash tools/liberime-msys2-build.sh --archive=liberime-$TRAVIS_TAG-windows-i686
deploy:
provider: releases
token: $GITHUB_TOKEN
file:
- liberime-$TRAVIS_TAG-windows-x86_64.zip
- liberime-$TRAVIS_TAG-windows-i686.zip
skip_cleanup: true
draft: false
on:
tags: true