AMD64
no language set
Git
api
{
"os": "linux",
"dist": "focal",
"language": "bash",
"jobs": {
"include": [
{
"name": "Reproduce stderr issue on s390x",
"os": "linux",
"arch": "s390x"
}
]
},
"script": [
"echo \"This is a stdout message\"",
"echo \"This is an stderr message\" >&2",
"ls /nonexistent_path",
"echo \"Final error message\" >&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": [
{
"name": "Reproduce stderr issue on s390x",
"os": "linux",
"arch": "s390x"
}
]
},
"script": [
"echo \"This is a stdout message\"",
"echo \"This is an stderr message\" >&2",
"ls /nonexistent_path",
"echo \"Final error message\" >&2"
]
}