This repository has been archived on 2024-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
2016-03-26 01:03:25 +00:00
|
|
|
language: bash
|
2016-03-26 01:13:31 +00:00
|
|
|
sudo: required
|
2016-03-26 01:03:25 +00:00
|
|
|
|
2016-12-08 07:50:48 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- debian-sid
|
|
|
|
packages:
|
|
|
|
- shellcheck
|
|
|
|
|
2016-03-26 03:32:06 +00:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
|
2016-03-27 09:50:09 +01:00
|
|
|
before_install:
|
2016-12-08 09:23:15 +00:00
|
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
|
2016-03-27 09:50:09 +01:00
|
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install screenresolution; fi
|
|
|
|
|
2016-03-26 01:03:25 +00:00
|
|
|
script:
|
2017-01-24 00:48:09 +00:00
|
|
|
- time ./neofetch --ascii --config config/travis -v
|
2016-12-08 08:18:06 +00:00
|
|
|
# See this wiki page for why we're disabling these errors.
|
2016-12-08 09:17:08 +00:00
|
|
|
# https://github.com/dylanaraps/neofetch/wiki/Shellcheck-Exclusions
|
2016-12-09 00:53:47 +00:00
|
|
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then shellcheck neofetch -e SC1090,SC2009,SC2012,SC2016,SC2034,SC2128,SC2153,SC2154,SC2178,SC2010; fi
|