From 76d92c2af40c6794d66548a81673ec198e4fd63f Mon Sep 17 00:00:00 2001 From: Richard Bonhomme Date: Fri, 1 Feb 2019 01:23:33 +0000 Subject: [PATCH] Add OSX to travis Signed-off-by: Richard Bonhomme --- .travis.yml | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/.travis.yml b/.travis.yml index c2768e0..b78394f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,18 @@ -language: bash +matrix: + allow_failures: + language: bash + sudo: false + include: -os: linux -dist: bionic + - os: linux + dist: bionic + script: + - openssl version + - shellcheck --version + - bash -c 'export SHELLCHECK_OPTS="-S warning -e SC2006"; shopt -s globstar; shellcheck **/*.sh easyrsa3/easyrsa' + - sh op_test.sh -vv -sudo: false - -env: - - PATH=/usr/bin:/bin:./:/usr/local/bin - -script: - - openssl version - - shellcheck --version - - bash -c 'export SHELLCHECK_OPTS="-S warning -e SC2006"; shopt -s globstar; shellcheck **/*.sh easyrsa3/easyrsa' - - sh op_test.sh -vv + - os: osx + osx_image: xcode10.1 + script: + - sh op_test.sh -vv