diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2018-10-29 08:47:47 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-10-30 20:21:25 +0100 |
commit | da59d3a5c1dcf03ac1a329c86e620478d3a6f94c (patch) | |
tree | 368d5ad529930827d03aa191d4abe44fe61e5241 /.cirrus.yml | |
parent | 45583f8ad0ba7c1167704214bb790c8c1fd755be (diff) | |
download | sonarqube-da59d3a5c1dcf03ac1a329c86e620478d3a6f94c.tar.gz sonarqube-da59d3a5c1dcf03ac1a329c86e620478d3a6f94c.zip |
SONARCLOUD-161 use postgresql 9.5 in QA
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 f6cd3237b13..09d9aa8366d 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -101,7 +101,9 @@ qa_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 |