mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 21:23:04 +01:00
29 lines
456 B
YAML
29 lines
456 B
YAML
language: cpp
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
sudo: required
|
|
dist: xenial
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- B3_0_Release
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libtool-bin
|
|
- libtommath0
|
|
- libtommath-dev
|
|
- libicu-dev
|
|
- zlib1g-dev
|
|
|
|
script:
|
|
- ./autogen.sh --enable-binreloc --with-builtin-tomcrypt --prefix=/opt/firebird
|
|
- make -j4
|
|
- make dist
|
|
- tar xzvf gen/Firebird-[0-9]*.tar.gz
|
|
- (cd Firebird-[0-9]*; sudo ./install.sh -silent)
|