| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | sudo: truelanguage: genericgroup: deprecated-2017Q3matrix:  include:    - os: linux      sudo: required      env:        - TARGET="lint"      before_script:        - pip install ufolint        - sudo apt-get -qq update        - sudo apt-get install -y shellcheck      script:        - make -j $TARGET    - os: linux      sudo: required      env:        - TARGET="build-with-dependencies"      before_script:        - pip install ufolint        - sudo apt-get -qq update        - sudo apt-get install -y shellcheck      script:        - make -j $TARGET    # - os: osx    #   env:    #     - TARGET="lint"    #   before_install:    #     - brew update    #     - brew install python3    #     - virtualenv env -p python3    #     - source env/bin/activate    #   before_script:    #     - pip install ufolint    #     - brew install shellcheck    #   script:    #     - make -j $TARGET    # - os: osx    #   env:    #     - TARGET="build-with-dependencies"    #   before_install:    #     - brew update    #     - brew install python3    #     - virtualenv env -p python3    #     - source env/bin/activate    #   script:    #     - make -j $TARGETnotifications:  email: false
 |