forked from vslavik/diff-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
36 lines (30 loc) · 858 Bytes
/
.appveyor.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
image:
- Ubuntu
- Visual Studio 2019
for:
-
matrix:
except:
- image: Ubuntu
environment:
MSYSTEM: MINGW32
PATH: C:\msys64\%MSYSTEM%\bin;C:\msys64\usr\bin;%PATH%
CHERE_INVOKING: 1
install:
- sh: sudo apt-get update
- sh: sudo apt-get --yes install libpoppler-glib-dev poppler-utils libwxgtk3.0-dev
- cmd: sh -lc "pacman --noconfirm -Syuu"
- cmd: sh -lc "pacman --noconfirm -S zip mingw-w64-i686-{poppler,wxWidgets}"
build_script:
- sh: ./bootstrap && ./configure && make
- cmd: sh -lc "./bootstrap && ./configure && make"
after_build:
- sh: make dist
- sh: appveyor PushArtifact diff-pdf*.tar.gz
- cmd: sh -lc "make windows-dist"
- ps: Get-ChildItem .\diff-pdf*.zip | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
deploy:
provider: Environment
name: github
on:
APPVEYOR_REPO_TAG: true