Push event #82 canceled

  • Ran for
  • Total time
michal-at-travisci/justtest:.travis.yml@5010c7c
arch:
  - arm64
  - amd64
  - ppc64le
  - s390x
os: linux

jobs:
  include:
  - dist: bionic
    script: "travis_wait 60 sleep 3600 &" #sending travis_wait to the background, which sends sleep to the background... The whole purpose of travis_wait issuing lines to standard output artificially is now denied
  - dist: bionic
    script: "travis_wait 60 sleep 3600"  #because travis_wait is managing to send a process to the background and observing it there
  - dist: focal
    script: "travis_wait 60 sleep 3600 &"
  - dist: focal
    script: "travis_wait 60 sleep 3600"
Build Config
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "arch": [
    "arm64",
    "amd64",
    "ppc64le",
    "s390x"
  ],
  "jobs": {
    "include": [
      {
        "dist": "bionic",
        "script": [
          "travis_wait 60 sleep 3600 &"
        ]
      },
      {
        "dist": "bionic",
        "script": [
          "travis_wait 60 sleep 3600"
        ]
      },
      {
        "dist": "focal",
        "script": [
          "travis_wait 60 sleep 3600 &"
        ]
      },
      {
        "dist": "focal",
        "script": [
          "travis_wait 60 sleep 3600"
        ]
      }
    ]
  }
}