File tree Expand file tree Collapse file tree 5 files changed +19
-11
lines changed
Expand file tree Collapse file tree 5 files changed +19
-11
lines changed Original file line number Diff line number Diff line change 1- language : lisp
2- sudo : required
1+ language : python
2+
3+ python :
4+ - 3.6
35
46dist : xenial
7+
58os :
69 - linux
710 - osx
811
912install :
1013 - ./ci/install.sh
14+ - pip install -r requirements.txt
1115
1216script :
1317 - make cycle
@@ -17,7 +21,7 @@ before_deploy:
1721
1822deploy :
1923 provider : releases
20- api_key : $GITHUB_OAUTH_TOKEN
24+ token : $GITHUB_OAUTH_TOKEN
2125 file : cycle-$TRAVIS_OS_NAME
2226 skip_cleanup : true
2327 on :
Original file line number Diff line number Diff line change 11#! /bin/sh
22
33if [ " $TRAVIS_OS_NAME " = " linux" ]; then
4- sudo apt update -qy;
5- sudo apt install -qy curl zlib1g-dev sbcl build-essential git;
6- git clone --depth 1 -b sbcl-2.0.7 git://git.code.sf.net/p/sbcl/sbcl /tmp/sbcl;
7- cd /tmp/sbcl || exit ;
8- sh make.sh --with-sb-core-compression;
9- sudo sh install.sh;
10- sudo apt remove sbcl;
4+ . ./ci/linux.sh
115fi
126
137if [ " $TRAVIS_OS_NAME " = " osx" ]; then
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ sudo apt update -qy;
4+ sudo apt install -qy curl python3 zlib1g-dev sbcl build-essential git;
5+ git clone --depth 1 -b sbcl-2.0.7 git://git.code.sf.net/p/sbcl/sbcl /tmp/sbcl;
6+ cd /tmp/sbcl || exit ;
7+ sh make.sh --with-sb-core-compression;
8+ sudo sh install.sh;
9+ sudo apt remove -yq sbcl;
Original file line number Diff line number Diff line change 44 :description " A opinionated static site builder."
55 :author " Adam Simpson <adam@adamsimpson.net>"
66 :license " GNU GPLv3"
7- :version " 0.2.10 "
7+ :version " 0.2.11 "
88 :serial t
99 :depends-on (
1010 :local-time
Original file line number Diff line number Diff line change 1+ Pygments == 2.3.1
You can’t perform that action at this time.
0 commit comments