A name
AMD64
Python: 3.10
Git
mkdtravis/TCIE-TESTS:.travis.yml@d235802
#testing draft new branch
dist: focal
language: python
python:
- 3.10
stages:
- name: build-dev
jobs:
include:
- stage: build-dev
name: "A name"
install: skip
script:
- bash deploy.sh
deploy:
provider: script
script: bash deploy.sh
edge: true
on:
all_branches: true
Build Config
{
"language": "python",
"os": [
"linux"
],
"dist": "focal",
"python": [
"3.10"
],
"stages": [
{
"name": "build-dev"
}
],
"jobs": {
"include": [
{
"stage": "build-dev",
"name": "A name",
"install": [
"skip"
],
"script": [
"bash deploy.sh"
],
"deploy": [
{
"provider": "script",
"script": "bash deploy.sh",
"edge": true,
"on": {
"all_branches": true
}
}
]
}
]
}
}