From b8d13e8ce410c60122b6703a2c91661554630421 Mon Sep 17 00:00:00 2001 From: Adar Nimrod Date: Mon, 21 Dec 2020 23:42:46 +0200 Subject: [PATCH] Migrate from Travis CI to GitLab CI. --- .gitlab-ci.yml | 8 ++++++++ .travis.yml | 17 ----------------- README.md | 4 ++-- 3 files changed, 10 insertions(+), 19 deletions(-) create mode 100644 .gitlab-ci.yml delete mode 100644 .travis.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..0047d05 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,8 @@ +--- +test: + image: buildpack-deps:bullseye + before_script: + - apt-get update + - apt-get install -y sharutils bats + script: + - bats . diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 9f19558..0000000 --- a/.travis.yml +++ /dev/null @@ -1,17 +0,0 @@ ---- -language: c -dist: trusty -sudo: false -group: beta - -addons: - apt: - packages: - - sharutils - -script: - - bats . - -notifications: - email: false - on_failure: never diff --git a/README.md b/README.md index ea93626..c5cbe90 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Bundle -[![Build Status](https://travis-ci.org/adarnimrod/bundle.svg?branch=master)](https://travis-ci.org/adarnimrod/bundle) +[![pipeline status](https://git.shore.co.il/nimrod/bundle/badges/master/pipeline.svg)](https://git.shore.co.il/nimrod/bundle/-/commits/master) > Bundle a binary file into a shell script. @@ -16,4 +16,4 @@ This software is licensed under the MIT license (see `LICENSE.txt`). Nimrod Adar, [contact me](mailto:nimrod@shore.co.il) or visit my [website]( https://www.shore.co.il/). Patches are welcome via [`git send-email`]( http://git-scm.com/book/en/v2/Git-Commands-Email). The repository is located -at: . +at: . -- GitLab