AMD64
Shell
Git
before_script: echo "hi from .travis.yml"

install: true

import:
  source: ./other.yml
  mode: deep_merge

env:
  global:
    FOO: foo
language: bash

env:
  global:
    BAR: bar

script: echo "salut from other.yml"
Build Config
{
  "env": {
    "global": {
      "BAR": "bar",
      "FOO": "foo"
    }
  },
  "import": {
    "mode": "deep_merge",
    "source": "./other.yml"
  },
  "script": "echo \"salut from other.yml\"",
  "install": true,
  "language": "bash",
  "before_script": "echo \"hi from .travis.yml\""
}