aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederic Barrat <fbarrat@linux.ibm.com>2021-11-05 18:26:20 +0100
committerCédric Le Goater <clg@kaod.org>2021-11-05 18:51:12 +0100
commit17e4ff6bd6902dd3f8ba7b17484f7ede8b283686 (patch)
treee0ea8d9e11c36d76113d924ae147987b03f08d86
parente1d0399c5a6bae9d5f3d129a82fd5aadb76fc1f5 (diff)
downloadskiboot-17e4ff6bd6902dd3f8ba7b17484f7ede8b283686.zip
skiboot-17e4ff6bd6902dd3f8ba7b17484f7ede8b283686.tar.gz
skiboot-17e4ff6bd6902dd3f8ba7b17484f7ede8b283686.tar.bz2
CI: Remove travis config file
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> Signed-off-by: Cédric Le Goater <clg@kaod.org>
-rw-r--r--.travis.yml71
1 files changed, 0 insertions, 71 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 9bf8825..0000000
--- 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"