diff options
author | Wu Xiaotian <[email protected]> | 2020-04-03 00:47:16 +0800 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-04-02 20:31:39 +0200 |
commit | f12c562854a7f2cc71f6822386b9f96b85bcd07c (patch) | |
tree | 0de5b877d581b4846998e9d2dd32ff0274b8a1d2 | |
parent | 91db9cca2fe7f80eae459a2d652dd759e29a6a1b (diff) | |
download | mate-common-f12c562854a7f2cc71f6822386b9f96b85bcd07c.tar.bz2 mate-common-f12c562854a7f2cc71f6822386b9f96b85bcd07c.tar.xz |
[ci] Avoid warning for build config validation
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index 33b4e6c..802935b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,18 +1,19 @@ # vim: set ts=2 sts=2 sw=2 expandtab : dist: bionic -sudo: required -language: bash +language: shell +os: linux services: - docker +addons: + apt: + packages: + - python3-github before_install: - curl -Ls -o docker-build https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/docker-build - chmod +x docker-build install: - - sudo apt-get install -y python3-pip python3-setuptools - - sudo pip3 install --upgrade pip - - sudo pip install PyGithub - ./docker-build --name ${DISTRO} --config .build.yml --install script: @@ -21,7 +22,6 @@ script: deploy: - provider: script script: ./docker-build --verbose --config .build.yml --release github - skip_cleanup: true on: tags: true condition: "${TRAVIS_TAG} =~ ^v.*$ && ${DISTRO} =~ ^fedora.*$" |