ha-fix-yml Construct build matrix correctly

Fold `include` under `matrix`, and add the default postgresql
version, since the default job is now lost in the build matrix.

Hiro Asari avatar Hiro Asari

Push event #595 passed

  • Ran for
  • Total time
  • New branch build
The .travis.yml file used for this job is not available
Build Config
{
  "env": [
    "RAILS_ENV=test"
  ],
  "rvm": "2.3.4",
  "sudo": false,
  "cache": {
    "directories": [
      "vendor/bundle"
    ]
  },
  "matrix": {
    "include": [
      {
        "addons": {
          "postgresql": "9.2"
        }
      },
      {
        "addons": {
          "postgresql": "9.3"
        }
      },
      {
        "addons": {
          "postgresql": "9.6"
        }
      }
    ]
  },
  "install": [
    "bundle _1.12.4_ install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}"
  ],
  "language": "ruby",
  "fast_finish": true,
  "before_script": [
    "cp config/database.yml.travis config/database.yml"
  ],
  "before_install": [
    "gem install bundler -v 1.12.4"
  ]
}