aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: bf225c937b11e606dda2bfcf02599e92827ca2c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
jobs:
  include:
    - name: "20.04 pycodestyle and native run (py3.8)"
      os: linux
      dist: focal
      language: shell
      install: sudo apt-get update; sudo apt install pycodestyle python3-pexpect;
      script:
        - "pycodestyle sos tests bin/*"
        - "sudo ./tests/simple.sh"
    - name: "18.04 pycodestyle and native run (py3.6)"
      os: linux
      dist: bionic
      language: shell
      install: sudo apt-get update; sudo apt install pycodestyle python3-pexpect;
      script: "sudo ./tests/simple.sh"
    - name: "18.04 native run for arm64"
      os: linux
      dist: bionic
      arch: arm64
      language: shell
      script: "sudo ./tests/simple.sh"
    - name: "18.04 native s390x"
      os: linux
      dist: bionic
      arch: s390x
      language: shell
      script: "sudo ./tests/simple.sh"
    - name: "nosetests and travis Python 3.6"
      os: linux
      dist: bionic
      language: python
      python: "3.6"
      install: pip install -r requirements.txt; python3 setup.py install;
      script:
        - "nosetests -v --with-cover --cover-package=sos --cover-html"
        - "sudo ./tests/simple.sh ~/virtualenv/python$TRAVIS_PYTHON_VERSION/bin/python"
    - name: "nosetests and travis Python 3.7"
      os: linux
      dist: bionic
      language: python
      python: "3.7"
      install: pip install -r requirements.txt; python3 setup.py install;
      script:
        - "nosetests -v --with-cover --cover-package=sos --cover-html"
        - "sudo ./tests/simple.sh ~/virtualenv/python$TRAVIS_PYTHON_VERSION/bin/python"
    - name: "nosetests and travis Python 3.8"
      os: linux
      dist: bionic
      language: python
      python: "3.8"
      install: pip install -r requirements.txt; python3 setup.py install;
      script:
        - "nosetests -v --with-cover --cover-package=sos --cover-html"
        - "sudo ./tests/simple.sh ~/virtualenv/python$TRAVIS_PYTHON_VERSION/bin/python"

notifications:
  email:
    sos-devel@redhat.com
  irc:
    channels:
      - "us.freenode.net#sosreport"
    on_success: change
git:
  depth: 5