API event #7.1 failed

  • Ran for
AMD64
no language set
Git
api
{
  "language": "bash",
  "jobs": {
    "include": [
      {
        "stage": "Test stderr visibility",
        "script": [
          "echo \"This is a stdout message\"",
          "echo \"This is an stderr message\" >&2",
          "echo \"Capturing stderr to a file...\"",
          "echo \"This is another stderr message\" 2>stderr.log",
          "cat stderr.log || echo \"stderr.log is empty\"",
          {
            "ls /nonexistent_path || echo \"Error": "Failed to list /nonexistent_path\" >&2"
          }
        ]
      }
    ]
  }
}
mkdtravis/pythonTest:.travis.yml@78e2f4e
os: linux
dist: focal
language: shell
script: echo testing
Build Config
{
  "language": "shell",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "jobs": {
    "include": [
      {
        "stage": "Test stderr visibility",
        "script": [
          "echo \"This is a stdout message\"",
          "echo \"This is an stderr message\" >&2",
          "echo \"Capturing stderr to a file...\"",
          "echo \"This is another stderr message\" 2>stderr.log",
          "cat stderr.log || echo \"stderr.log is empty\"",
          {
            "ls /nonexistent_path || echo \"Error": "Failed to list /nonexistent_path\" >&2"
          }
        ]
      }
    ]
  },
  "script": [
    "echo testing"
  ]
}