Skip to content

Commit f91074f

Browse files
committed
Disable OSX testing for gtk version
Currently gtkd does not link correctly for OSX: gtkd-developers/GtkD#162
1 parent d243f6f commit f91074f

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ deploy:
3333
api_key:
3434
secure: LqFD1B3h4b2RYlGW8fatBPdbzqOM03mteXKPQNOghrcGStDuDtDc+3h5xmfcPdgtkKML7RTJwrnBHTyvLIWuBMQV3rfFWX24zqo9pr+RDGw6NHSEmEjYdPhvXYDTc+/q6Cnz5JNAVeAoQ3w1Kc/RdCmSWsBgDMcTmkYi6KM/nfc=
3535
file:
36-
- "plotcli-osx-gtk.tar.gz"
36+
#- "plotcli-osx-gtk.tar.gz"
3737
- "plotcli-osx.tar.gz"
3838
on:
3939
tags: true

travis.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ if [[ "$TRAVIS_OS_NAME" == "osx" || "$DC" == "ldc2" ]]; then
99
fi
1010

1111
dub test --compiler=${DC} ${BM}
12-
dub test -c unittest-gtk --compiler=${DC} ${BM}
12+
if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then
13+
dub test -c unittest-gtk --compiler=${DC} ${BM}
14+
fi
1315

1416
if [[ $TRAVIS_BRANCH == 'master' ]] ; then
1517
if [ ! -z "$GH_TOKEN" ]; then
@@ -44,9 +46,9 @@ if [ -n "$TRAVIS_TAG" ]; then
4446
dub build --compiler=$DC -b release
4547
strip bin/plotcli
4648
tar -czf plotcli-osx.tar.gz -C bin/ plotcli
47-
dub build --compiler=$DC -b release -c plotcli-gtk
48-
strip bin/plotcli
49-
tar -czf plotcli-osx-gtk.tar.gz -C bin/ plotcli
49+
#dub build --compiler=$DC -b release -c plotcli-gtk
50+
#strip bin/plotcli
51+
#tar -czf plotcli-osx-gtk.tar.gz -C bin/ plotcli
5052
fi
5153
if [[ "$TRAVIS_OS_NAME" == "linux" && "$DC" == "ldc2" ]]; then
5254
dub build --compiler=$DC -b release

0 commit comments

Comments
 (0)