travis-ci/enterprise-testing:.travis.yml@f47978b
language: ruby
jobs:
  include:
     - stage: ONE
       os: ubuntu
       arch: arm64
       script: ruby ./hello.rb
     - stage: TWO
       os: ubuntu
       arch: amd64
       script: ruby ./hello.rb
     - stage: THREE
       os: ubuntu
       arch: arm64
       script: ruby ./hello.rb
     - stage: FOUR
       os: ubuntu
       arch: arm64
       script: ruby ./hello.rb
Build Config
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "jobs": {
    "include": [
      {
        "stage": "ONE",
        "os": "linux",
        "arch": "arm64",
        "script": [
          "ruby ./hello.rb"
        ]
      },
      {
        "stage": "TWO",
        "os": "linux",
        "arch": "amd64",
        "script": [
          "ruby ./hello.rb"
        ]
      },
      {
        "stage": "THREE",
        "os": "linux",
        "arch": "arm64",
        "script": [
          "ruby ./hello.rb"
        ]
      },
      {
        "stage": "FOUR",
        "os": "linux",
        "arch": "arm64",
        "script": [
          "ruby ./hello.rb"
        ]
      }
    ]
  }
}