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 2>stderr.log",
"cat stderr.log",
{
"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 2>stderr.log",
"cat stderr.log",
{
"ls /nonexistent_path || echo \"Error": "Failed to list /nonexistent_path\" >&2"
}
]
}
]
},
"script": [
"echo testing"
]
}