Skip to content

Commit 9d93996

Browse files
committed
simplify CI scripts
1 parent 038d436 commit 9d93996

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

Diff for: .jazzy.yml renamed to .jazzy.yaml

File renamed without changes.

Diff for: .travis.yml

+9-15
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,17 @@
1-
notifications:
2-
slack: zewo:VjyVCCQvTOw9yrbzQysZezD1
31
os:
42
- linux
53
- osx
64
language: generic
7-
sudo: required
5+
sudo: false
86
dist: trusty
97
osx_image: xcode8.3
8+
addons:
9+
apt:
10+
sources:
11+
- sourceline: 'deb [trusted=yes] http://apt.zewo.io ./'
12+
packages:
13+
- libdill
1014
install:
11-
- eval "$(curl -sL https://raw.githubusercontent.com/Zewo/Zewo/master/Scripts/Travis/install.sh)"
12-
13-
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install zewo/tap/libdill; fi
14-
15-
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then echo "deb [trusted=yes] http://apt.zewo.io ./" | sudo tee --append /etc/apt/sources.list; fi
16-
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo apt-get update; fi
17-
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo apt-get install libdill; fi
18-
19-
- export LD_LIBRARY_PATH=/usr/local/lib
15+
- eval "$(curl -sL http://sh.zewo.io/install-libdill.sh)"
2016
script:
21-
- bash <(curl -s https://raw.githubusercontent.com/Zewo/Zewo/master/Scripts/Travis/build-test.sh) Venice
22-
after_success:
23-
- bash <(curl -s https://raw.githubusercontent.com/Zewo/Zewo/master/Scripts/Travis/report-coverage.sh)
17+
- bash <(curl -sL http://sh.zewo.io/build.sh)

Diff for: circle.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
dependencies:
2+
override:
3+
- eval "$(curl -sL http://sh.zewo.io/install-libdill.sh)"
4+
test:
5+
override:
6+
- bash <(curl -sL http://sh.zewo.io/build.sh)

0 commit comments

Comments
 (0)