From: JunsuChoi Date: Mon, 26 Apr 2021 07:25:21 +0000 (+0900) Subject: infra Travis: Remove travis-ci build test X-Git-Tag: accepted/tizen/unified/20210429.011934~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fbd99039bfb24f9f86be8ff9eb1a60acb122adf0;p=platform%2Fcore%2Fgraphics%2Ftizenvg.git infra Travis: Remove travis-ci build test We don't need to build test with travis-ci. The build test is already being worked in the github-action. In addition, travis-ci causes unnecessary failures because the recent request count is not properly counted. --- diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 29f2cd1..0000000 --- a/.travis.yml +++ /dev/null @@ -1,19 +0,0 @@ -sudo: false - -os: - - linux - -language: - - cpp - -services: - - docker - -before_install: - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then docker pull jsuya/thorvg-ci-setup; fi - -script: - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then echo FROM jsuya/thorvg-ci-setup > Dockerfile; fi - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then echo ADD . /root >> Dockerfile; fi - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then docker build -t withgit .; fi - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then docker run withgit /bin/sh -c "cd /root && TRAVIS=true meson -Dexamples=true -Dtools=svg2png builddir && ninja -C builddir install"; fi