8000 Travis-CI integration · ololobus/postgres@e718d23 · GitHub
[go: up one dir, main page]

Skip to content

Commit e718d23

Browse files
committed
Travis-CI integration
1 parent d20dcea commit e718d23

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

.travis.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
language: c
2+
compiler: gcc
3+
dist: xenial
4+
addons:
5+
apt:
6+
packages:
7+
- libreadline-dev
8+
- zlib1g-dev
9+
install:
10+
- curl -L https://cpanmin.us | perl - App::cpanminus
11+
- ~/perl5/bin/cpanm --local-lib=~/perl5 local::lib && eval $(perl -I ~/perl5/lib/perl5/ -Mlocal::lib)
12+
- ~/perl5/bin/cpanm IPC::Run
13+
- ~/perl5/bin/cpanm Test::More
14+
- ~/perl5/bin/cpanm Time::HiRes
15+
script:
16+
- export CFLAGS="-Og"
17+
- ./configure --enable-debug --enable-cassert --enable-depend --enable-tap-tests BISONFLAGS="-v"
18+
- make check-world

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# PostgreSQL mirror for development purposes
2+
3+
[![Travis-ci Status](https://travis-ci.org/ololobus/postgres.svg?branch=master)](https://travis-ci.org/ololobus/postgres)
4+
5+
This directory contains the source code distribution of the PostgreSQL
6+
database management system.
7+
8+
PostgreSQL is an advanced object-relational database management system
9+
that supports an extended subset of the SQL standard, including
10+
transactions, foreign keys, subqueries, triggers, user-defined types
11+
and functions. This distribution also contains C language bindings.
12+
13+
PostgreSQL has many language interfaces, many of which are listed here:
14+
15+
https://www.postgresql.org/download
16+
17+
See the file INSTALL for instructions on how to build and install
18+
PostgreSQL. That file also lists supported operating systems and
19+
hardware platforms and contains information regarding any other
20+
software packages that are required to build or run the PostgreSQL
21+
system. Copyright and license information can be found in the
22+
file COPYRIGHT. A comprehensive documentation set is included in this
23+
distribution; it can be read as described in the installation
24+
instructions.
25+
26+
The latest version of this software may be obtained at
27+
https://www.postgresql.org/download/. For more information look at our
28+
web site located at https://www.postgresql.org/.

0 commit comments

Comments
 (0)
0