mirror of
https://github.com/kiwix/kiwix-tools.git
synced 2025-09-23 03:52:35 -04:00
commit
a365c1e720
@ -1,6 +1,6 @@
|
|||||||
language: cpp
|
language: cpp
|
||||||
dist: trusty
|
dist: xenial
|
||||||
sudo: required
|
sudo: true
|
||||||
cache: ccache
|
cache: ccache
|
||||||
install: travis/install_deps.sh
|
install: travis/install_deps.sh
|
||||||
script: travis/compile.sh
|
script: travis/compile.sh
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
kiwix-tools 1.2.2
|
kiwix-tools 2.0.0
|
||||||
=================
|
=================
|
||||||
|
|
||||||
kiwix-manage
|
kiwix-manage
|
||||||
@ -6,6 +6,7 @@ kiwix-manage
|
|||||||
|
|
||||||
* Better usage()
|
* Better usage()
|
||||||
* Adding multiple files bug fix
|
* Adding multiple files bug fix
|
||||||
|
* Remove download command.
|
||||||
|
|
||||||
kiwix-serve
|
kiwix-serve
|
||||||
-----------
|
-----------
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
project('kiwix-tools', 'cpp',
|
project('kiwix-tools', 'cpp',
|
||||||
version : '1.2.1',
|
version : '2.0.0',
|
||||||
license : 'GPL',
|
license : 'GPL',
|
||||||
default_options: ['c_std=c11', 'cpp_std=c++11', 'werror=true'])
|
default_options: ['c_std=c11', 'cpp_std=c++11', 'werror=true'])
|
||||||
|
|
||||||
@ -11,7 +11,7 @@ if static_linkage
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
thread_dep = dependency('threads')
|
thread_dep = dependency('threads')
|
||||||
kiwixlib_dep = dependency('kiwix', version:'>=4.1.0', static:static_linkage)
|
kiwixlib_dep = dependency('kiwix', version:'>=5.1.0', static:static_linkage)
|
||||||
microhttpd_dep = dependency('libmicrohttpd', static:static_linkage)
|
microhttpd_dep = dependency('libmicrohttpd', static:static_linkage)
|
||||||
z_dep = dependency('zlib', static:static_linkage)
|
z_dep = dependency('zlib', static:static_linkage)
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
REPO_NAME=${TRAVIS_REPO_SLUG#*/}
|
REPO_NAME=${TRAVIS_REPO_SLUG#*/}
|
||||||
ARCHIVE_NAME=deps_${TRAVIS_OS_NAME}_${PLATFORM}_${REPO_NAME}.tar.xz
|
ARCHIVE_NAME=deps_linux_xenial_${PLATFORM}_${REPO_NAME}.tar.xz
|
||||||
|
|
||||||
# Packages.
|
# Packages.
|
||||||
case ${PLATFORM} in
|
case ${PLATFORM} in
|
||||||
@ -46,3 +46,4 @@ sudo cp ninja /bin
|
|||||||
cd ${HOME}
|
cd ${HOME}
|
||||||
wget http://tmp.kiwix.org/ci/${ARCHIVE_NAME}
|
wget http://tmp.kiwix.org/ci/${ARCHIVE_NAME}
|
||||||
tar xf ${HOME}/${ARCHIVE_NAME}
|
tar xf ${HOME}/${ARCHIVE_NAME}
|
||||||
|
sudo ln -s travis ../ci_builder
|
||||||
|
Loading…
x
Reference in New Issue
Block a user