-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.drone.yml
38 lines (33 loc) · 1.05 KB
/
.drone.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
build:
image: teaci/wine-staging
commands:
- wget http://security.ubuntu.com/ubuntu/pool/main/f/freetype/libfreetype6_2.5.2-1ubuntu2_i386.deb && wget http://security.ubuntu.com/ubuntu/pool/main/f/freetype/libfreetype6_2.5.2-1ubuntu2_amd64.deb && dpkg -i libfreetype6_2.5.2-1ubuntu2_amd64.deb libfreetype6_2.5.2-1ubuntu2_i386.deb
- export WINPTY_SHOW_CONSOLE=1
- cp msys2-env /etc
- cp msys2-shell /usr/bin
- cp msys2-rebase /usr/bin
- cp msys2-init /usr/bin
- cp msys32 /usr/bin
- cp msys64 /usr/bin
# unset DRONE to skip copying wineprefix in msys2-init
- DRONE=false WINEPREFIX=`pwd`/wineprefix MSYS_ARCH=$$arch msys2-init
notify:
gitter:
webhook: https://webhooks.gitter.im/e/d8f2032e40a8e78a3882
publish:
docker:
file: Dockerfile
username: $$DOCKER_USER
password: $$DOCKER_PASS
email: $$DOCKER_EMAIL
repo: teaci/msys$$arch
tag:
- "testing"
- "w1.9.10-m2.5.2-1t"
when:
repo: TeaCI/msys2-docker # case sensitive
branch: ["master"]
matrix:
arch:
- 64
- 32