Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Commit

Permalink
travis: add linux-ppc64le and osx
Browse files Browse the repository at this point in the history
Run statick checks on linux-ppc64le and osx.

Fixes: #691.

Signed-off-by: Salvador Fuentes <salvador.fuentes@intel.com>
  • Loading branch information
chavafg committed Aug 31, 2018
1 parent 5efdbbd commit 7b66672
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .ci/static-checks.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Copyright (c) 2017-2018 Intel Corporation
#
Expand Down
17 changes: 16 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,16 @@
# SPDX-License-Identifier: Apache-2.0
#

dist: trusty
os:
- linux
- osx
- linux-ppc64le

matrix:
include:
- os: linux
sudo: required
dist: trusty

language: go

Expand All @@ -15,5 +24,11 @@ go:
env:
- target_branch=$TRAVIS_BRANCH

before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install bash; fi

before_script:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export PATH=/usr/local/bin:$PATH; fi

script:
- ".ci/static-checks.sh github.com/kata-containers/tests"

0 comments on commit 7b66672

Please sign in to comment.