blob: 58db7262d324bc45e931ddd51bc63ad67b3b121d (
plain)
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
|
sudo: required
services:
- docker
archlinux:
repos:
- archlinuxfr=http://repo.archlinux.fr/$arch
packages:
- p7zip
- wine
- wine-mono
- wine_gecko
- xorg-xwininfo
- xdotool
- wqy-microhei
- adobe-source-han-sans-cn-fonts
- lib32-alsa-lib
- lib32-alsa-plugins
- lib32-libpulse
- lib32-openal
- lib32-mpg123
- lib32-libldap
script:
- "makepkg"
script:
- "curl -s https://raw.githubusercontent.com/mikkeloscar/arch-travis/master/arch-travis.sh | bash"
deploy:
provider: releases
skip_cleanup: true
overwrite: true
api_key: $GH_TOKEN
file_glob: true
file:
- "deepin-wine-wechat-*-x86_64.pkg.tar.xz"
on:
tags: true
all_branches: true
repo: countstarlight/deepin-wine-wechat-arch
|