Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
1cc2d24f
Unverified
Commit
1cc2d24f
authored
Dec 20, 2017
by
Michael Moravec
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Attempt to run PostgeSQL 10 on Travis
parent
c8e6c9c3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
0 deletions
+44
-0
.travis.yml
.travis.yml
+31
-0
install-postgres-10.sh
tests/travis/install-postgres-10.sh
+13
-0
No files found.
.travis.yml
View file @
1cc2d24f
...
...
@@ -245,6 +245,37 @@ jobs:
addons
:
postgresql
:
"
9.6"
-
stage
:
Test
php
:
7.1
env
:
DB=pgsql POSTGRESQL_VERSION=10
sudo
:
required
services
:
-
postgresql
addons
:
postgresql
:
"
9.6"
before_script
:
-
bash ./tests/travis/install-postgres-10.sh
-
stage
:
Test
php
:
7.2
env
:
DB=pgsql POSTGRESQL_VERSION=10
sudo
:
required
services
:
-
postgresql
addons
:
postgresql
:
"
9.6"
before_script
:
-
bash ./tests/travis/install-postgres-10.sh
-
stage
:
Test
php
:
nightly
env
:
DB=pgsql POSTGRESQL_VERSION=10
sudo
:
required
services
:
-
postgresql
addons
:
postgresql
:
"
9.6"
before_script
:
-
bash ./tests/travis/install-postgres-10.sh
-
stage
:
Coverage
php
:
7.1
env
:
DB=sqlite
...
...
tests/travis/install-postgres-10.sh
0 → 100644
View file @
1cc2d24f
#!/usr/bin/env bash
set
-ex
echo
"Installing Postgres 10"
sudo
service postgresql stop
sudo
apt-get remove
-q
'postgresql-*'
sudo
apt-get update
-q
sudo
apt-get
install
-q
postgresql-10 postgresql-client-10
sudo cp
/etc/postgresql/
{
9.6,10
}
/main/pg_hba.conf
echo
"Restarting Postgres 10"
sudo
service postgresql restart
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment