From 931650abdd574c12e1c9e60e778e5d6a3c5a9b0c Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sat, 2 Jan 2021 17:46:13 +0200 Subject: [PATCH] GitLab CI. - Remove Travis CI. - Remove tox (it's just pre-commit I'm running here and without the Travis CI integration there's no point for it). - Use CI template. --- .gitlab-ci.yml | 4 ++++ .travis.yml | 20 -------------------- README.md | 2 +- tox.ini | 7 ------- 4 files changed, 5 insertions(+), 28 deletions(-) create mode 100644 .gitlab-ci.yml delete mode 100644 .travis.yml delete mode 100644 tox.ini diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..f92da7b --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,4 @@ +--- +include: + - project: shore/ci-templates + file: templates/pre-commit.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 533c96b..0000000 --- a/.travis.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -language: python -python: "3.6" -dist: trusty -sudo: false -group: beta -cache: - - pip - - directories: - - $HOME/.pre-commit - -install: - - pip install tox | cat - -script: - - tox - -notifications: - on_failure: never - email: false diff --git a/README.md b/README.md index 50fe199..576c120 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # ansible-desktop-playbooks -[](https://travis-ci.org/adarnimrod/ansible-desktop-playbooks) +[](https://git.shore.co.il/ansible/ansible-desktop-playbooks/-/commits/master) Ansible playbooks for setting up new desktops. diff --git a/tox.ini b/tox.ini deleted file mode 100644 index 0699392..0000000 --- a/tox.ini +++ /dev/null @@ -1,7 +0,0 @@ -[tox] -skip_install = True -skipsdist = True - -[testenv] -deps = pre-commit -commands = pre-commit run --all-files -- GitLab