diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2018-10-30 16:53:33 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-10-30 20:21:26 +0100 |
commit | a48e4614140ac17c5d93f0ac65074916c5f323c9 (patch) | |
tree | 32964ba1310f9e0cb75a654238868b111aa2dead /.cirrus.yml | |
parent | da59d3a5c1dcf03ac1a329c86e620478d3a6f94c (diff) | |
download | sonarqube-a48e4614140ac17c5d93f0ac65074916c5f323c9.tar.gz sonarqube-a48e4614140ac17c5d93f0ac65074916c5f323c9.zip |
SONARCLOUD-161 run validation against Postgres 9.5
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 09d9aa8366d..282b40226e5 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -74,7 +74,9 @@ validate_task: memory: 10Gb additional_containers: - name: postgres - image: postgres:9.3 + # 9.5 is the version used internally at SonarSource. + # The minimal supported version is 9.3 and is tested by nightly QA jobs. + image: postgres:9.5 port: 5432 cpu: 1 memory: 1Gb |