File tree Expand file tree Collapse file tree 2 files changed +27
-8
lines changed Expand file tree Collapse file tree 2 files changed +27
-8
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ matrix:
17
17
- _MINGW=mingw32
18
18
- _HOST=i686-w64-mingw32
19
19
before_install :
20
- - docker pull jpcima/arch-mingw
20
+ - docker pull archlinux
21
21
install :
22
- - container=$(docker run -d -i -t -v /home:/home jpcima/arch-mingw /bin/bash)
22
+ - container=$(docker run -d -i -t -v /home:/home archlinux /bin/bash)
23
23
- |
24
24
cross() {
25
25
docker exec -w "$(pwd)" -e "_BUILD=$_BUILD" -e "_MINGW=$_MINGW" -e "_HOST=$_HOST" -i -t "$container" "$@"
@@ -37,9 +37,9 @@ matrix:
37
37
- _MINGW=mingw64
38
38
- _HOST=x86_64-w64-mingw32
39
39
before_install :
40
- - docker pull jpcima/arch-mingw
40
+ - docker pull archlinux
41
41
install :
42
- - container=$(docker run -d -i -t -v /home:/home jpcima/arch-mingw /bin/bash)
42
+ - container=$(docker run -d -i -t -v /home:/home archlinux /bin/bash)
43
43
- |
44
44
cross() {
45
45
docker exec -w "$(pwd)" -e "_BUILD=$_BUILD" -e "_MINGW=$_MINGW" -e "_HOST=$_HOST" -i -t "$container" "$@"
@@ -96,7 +96,7 @@ deploy:
96
96
file_glob : true
97
97
prerelease : true
98
98
overwrite : true
99
- edge : true
99
+ skip_cleanup : true
100
100
on :
101
101
branch : master
102
102
105
105
secure : " ekhpEcbeQa58ETkjVoa9kcVjAphPr+a+MM5OSROrYskgwiikDQiUKURb2BySukfh9IfiyX/crFcwfR5isCbF8IT6SCGrFwy5FbLWyGPwGbs1CIxOwyLGraN7eb5KSBYSKbIivu82zCk7BjPUcIbodoZcod0xNCV0m5BauriiZM/w0hLwe+dnRx2SJJirHZKK2MQAma9ixG6qCxCvDKcK1mQppb+TZOueP2L2uUpeI15qL9t+MPdo3/hL4GqLnZ1oBuTUlYq9+28znEU2VLwkaxqlvsIxKkY8BfkA8ZjZzqs86dy8CBevkIJUGB3pZOKjirCV1w6Oh7yBof99dGmdobcBuY5/rupN50FwfKqwSXh53oHImo1xWSYB8PNmXuj5j7OniajKXtdueGNZZy8SPF78ZL1Q7VIpONxHykclt0IUscypoiTOrpSvWbWPuvbPLWKaD3t5/xETB/wq7yxifsN6tI4Kj5veExISrHxJs5x/M8qrtpoiPexnqwfQF6VFQrtd7yjSHg9BJOUaCa+orZHDuBOiyPgswP+ZmCwLk300V4jcH6ieVF9mPcxj7rebxT+TW8Kf5K6eqE8l4Rp4ReN+z+001qk+XXWQ8MxazR7BlAgKsVZX8MuSJUGRO2lab5LNku9CfpzFex6oqwrf2z5RQSBclFmw0NNB/Pm+4rM="
106
106
107
107
notifications :
108
- irc : " ircs://chat.freenode.net:7070/#librazik"
108
+ irc :
109
+ template :
110
+ - " %{repository_slug}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}"
111
+ channels :
112
+ - " ircs://chat.freenode.net:7070/#librazik"
Original file line number Diff line number Diff line change @@ -16,6 +16,22 @@ set -x
16
16
test ! -z " $_MINGW "
17
17
test ! -z " $_HOST "
18
18
19
+
20
+ # ---------------------------------------------------------------------------------------------------------------------
21
+ # install requirements
22
+
23
+ cat >> /etc/pacman.conf << EOF
24
+ [multilib]
25
+ Include = /etc/pacman.d/mirrorlist
26
+
27
+ [mingw-w64]
28
+ SigLevel = Optional TrustAll
29
+ Server = https://github.com/jpcima/arch-mingw-w64/releases/download/repo.\$ arch/
30
+ EOF
31
+
32
+ pacman -Sqy --noconfirm
33
+ pacman -Sq --noconfirm base-devel wine mingw-w64-gcc mingw-w64-pkg-config mingw-w64-cairo
34
+
19
35
# ---------------------------------------------------------------------------------------------------------------------
20
36
# build host tools
21
37
@@ -50,5 +66,4 @@ sed -i 's/"$GEN"/wine "$GEN"/g' dpf/utils/generate-ttl.sh
50
66
# ---------------------------------------------------------------------------------------------------------------------
51
67
# build the plugin
52
68
53
- # TODO skipped LV2 build
54
- CROSS_COMPILING=true WINDOWS=true BUILD_LV2=false make $MAKE_ARGS
69
+ WINDOWS=true make $MAKE_ARGS
You can’t perform that action at this time.
0 commit comments