diff mbox series

[7/7] CI: Remove travis config file

Message ID 20211105172620.304780-8-fbarrat@linux.ibm.com
State Accepted
Headers show
Series CI updates | expand

Checks

Context Check Description
snowpatch_ozlabs/github-Docker_builds_and_checks success Successfully ran 9 jobs.

Commit Message

Frederic Barrat Nov. 5, 2021, 5:26 p.m. UTC
travis.org is dead. Using travis-ci.com has some money implication and
we won't be able to check whether the config is still valid and the
tests passing. We migrated most of the existing CI on travis to github
actions.
So this can only bit-rot so let's remove it.

Signed-off-by: Frederic Barrat <fbarrat@linux.ibm.com>
---
 .travis.yml | 71 -----------------------------------------------------
 1 file changed, 71 deletions(-)
 delete mode 100644 .travis.yml
diff mbox series

Patch

diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 9bf88252..00000000
--- a/.travis.yml
+++ /dev/null
@@ -1,71 +0,0 @@ 
-language: c
-
-os:
- - linux
- - linux-ppc64le
-
-# NB: This is just the distro used for the container host
-dist: bionic
-services: docker
-
-cache: ccache
-
-env:
-    jobs:
-      - RUN_ON_CONTAINER=ubuntu-18.04
-      - RUN_ON_CONTAINER=ubuntu-20.04
-      - RUN_ON_CONTAINER=ubuntu-latest
-      - RUN_ON_CONTAINER=centos7
-      - RUN_ON_CONTAINER=fedora33
-      - RUN_ON_CONTAINER=fedora-rawhide
-      - RUN_ON_CONTAINER=debian-unstable
-      - RUN_ON_CONTAINER=docs
-
-jobs:
-  allow_failures:
-    - env: RUN_ON_CONTAINER=fedora-rawhide
-    - env: RUN_ON_CONTAINER=debian-unstable
-    - env: RUN_ON_CONTAINER=ubuntu-latest
-    - env: RUN_ON_CONTAINER=clang
-  exclude:
-    - os: linux-ppc64le
-      env: RUN_ON_CONTAINER=centos7
-    - os: linux-ppc64le
-      env: RUN_ON_CONTAINER=docs
-    - os: linux-ppc64le
-      env: RUN_ON_CONTAINER=clang
-
-install:
-    - docker build --pull -t ${RUN_ON_CONTAINER} -f opal-ci/Dockerfile-${RUN_ON_CONTAINER} .
-    - mkdir -p ci_build_cache/${RUN_ON_CONTAINER}
-
-script:
-    - >
-      docker run
-      --security-opt seccomp=unconfined
-      --volume $HOME/.ccache:/root/.ccache
-      --volume `pwd`:/build
-      --volume `pwd`/ci_build_cache/${RUN_ON_CONTAINER}:/root/ci_build_cache/
-      --tmpfs /tmp/
-      --rm -t $RUN_ON_CONTAINER
-      bash -c "./opal-ci/build-${RUN_ON_CONTAINER}.sh"
-
-
-# apparently this needs to be in the master branch in order for it to work on
-# other branches too.
-addons:
-  coverity_scan:
-    project:
-      name: "open-power/skiboot"
-      description: "Build submitted via Travis CI"
-    notification_email: hegdevasant@linux.ibm.com
-    branch_pattern: coverity_scan
-
-deploy:
-  provider: pages
-  skip_cleanup: true
-  github_token: $GITHUB_TOKEN # set in travis-ci.org dashboard, marked secure
-  local_dir: "doc/_build/ghpages"
-  on:
-    branch: master
-    condition: "$RUN_ON_CONTAINER = docs"