From 6802400acd19550f3e0c6e8d5f1107298b72a79e Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Sun, 10 May 2020 02:11:34 -0500 Subject: [PATCH] Initial test --- .travis.yml | 29 +++++++++++++++++++++++++++++ push.sh | 4 ++++ test.sh | 3 +++ 3 files changed, 36 insertions(+) create mode 100644 .travis.yml create mode 100644 push.sh create mode 100644 test.sh diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..7e52d76 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,29 @@ +os: + - windows + - linux + - osx + +addons: + apt: + packages: + - autopoint + +language: c + +env: + - BRANCH=0.20.2 + - BRANCH=1.0.6 + - BRANCH=1.2.0 + - BRANCH=devel + +cache: + directories: + - "$HOME/.choosenim" + +install: + - export PATH="/usr/local/opt/gettext/bin:$PATH" + - curl https://gist.github.com/genotrance/fb53504a4fba88bc5201d3783df5c522/raw/travis.sh -LsSf -o travis.sh + - source travis.sh + +script: + - source test.sh diff --git a/push.sh b/push.sh new file mode 100644 index 0000000..d9ca762 --- /dev/null +++ b/push.sh @@ -0,0 +1,4 @@ +#! /bin/bash + +git commit -a -m "Test" +git push \ No newline at end of file diff --git a/test.sh b/test.sh new file mode 100644 index 0000000..33b1a69 --- /dev/null +++ b/test.sh @@ -0,0 +1,3 @@ +#! /bin/bash + +echo Hello world \ No newline at end of file