michal-at-travisci/justtest:.travis.yml@9fbbc97
install: skip
jobs:
include:
- os: linux #for comparison
dist: bionic
language: python
python: "3.6"
script: python ./src/hello.py
- os: freebsd #for identification
script:
- uname -a
- kenv
- env
- os: freebsd
language: python
python: "3.6"
script: python ./src/hello.py
- os: freebsd
language: cpp
compiler: gcc
script:
- chmod +x ./buildscripts/cpp-build.sh && "$SHELL" ./buildscripts/cpp-build.sh
Build Config
{
"language": "ruby",
"os": [
"linux"
],
"dist": "xenial",
"install": [
"skip"
],
"jobs": {
"include": [
{
"os": "linux",
"dist": "bionic",
"language": "python",
"python": "3.6",
"script": [
"python ./src/hello.py"
]
},
{
"os": "freebsd",
"script": [
"uname -a",
"kenv",
"env"
]
},
{
"os": "freebsd",
"language": "python",
"python": "3.6",
"script": [
"python ./src/hello.py"
]
},
{
"os": "freebsd",
"language": "cpp",
"compiler": "gcc",
"script": [
"chmod +x ./buildscripts/cpp-build.sh && \"$SHELL\" ./buildscripts/cpp-build.sh"
]
}
]
}
}