cesar-cs/arch:.travis.yml@a9fff64
jobs:
include:
- arch: s390x
dist: bionic
- arch: ppc64le
dist: bionic
- arch: amd64
dist: focal
- arch: amd64
dist: jammy
- arch: s390x
dist: bionic
- arch: arm
dist: bionic
- arch: ppc64le
dist: bionic
language: python
python:
- "2.7"
script:
- uname -a
- python3 --version
- python --version
- sudo apt-get update
- sudo apt-get install awscli
# - ant -v
# - cat /etc/hostname
# - cat /etc/hosts
# - cat /etc/nsswitch.conf
# - cat /etc/resolv.conf
# - getent hosts localhost.localdomain
# - sudo true
# - hostnamectl
# - hostname
# - ls -lah /etc/cloud/cloud.cfg.d/
# - cat /etc/cloud/cloud.cfg
# - cat /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg
# - cat /etc/hosts
# - sudo true
# - ping -c 3 localhost
# - echo -n "127.0.0.1 localhost " | sudo tee -a /etc/hosts
# - cat /etc/hosts
# - sudo true
Build Config
{
"language": "python",
"os": [
"linux"
],
"dist": "xenial",
"jobs": {
"include": [
{
"arch": "s390x",
"dist": "bionic"
},
{
"arch": "ppc64le",
"dist": "bionic"
},
{
"arch": "amd64",
"dist": "focal"
},
{
"arch": "amd64",
"dist": "jammy"
},
{
"arch": "s390x",
"dist": "bionic"
},
{
"arch": "arm",
"dist": "bionic"
},
{
"arch": "ppc64le",
"dist": "bionic"
}
]
},
"python": [
"2.7"
],
"script": [
"uname -a",
"python3 --version",
"python --version",
"sudo apt-get update",
"sudo apt-get install awscli"
]
}