murtaza-swati/myTestRepo:.travis.yml@c433fc2
os: linux
dist: focal
arch: amd64
language: ruby
jobs:
include:
- stage: test1
script: echo "testing1..."
- stage: test2
script: echo "testing2..."
Build Config
{
"language": "ruby",
"os": [
"linux"
],
"dist": "focal",
"arch": [
"amd64"
],
"jobs": {
"include": [
{
"stage": "test1",
"script": [
"echo \"testing1...\""
]
},
{
"stage": "test2",
"script": [
"echo \"testing2...\""
]
}
]
}
}