17 lines
477 B
YAML
17 lines
477 B
YAML
language: bash
|
|
sudo: required
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
before_install:
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install screenresolution; fi
|
|
|
|
script:
|
|
- sudo make install
|
|
- time neofetch --test --ascii --config off --ascii_distro travis -v \
|
|
--refresh_rate "on" --shell_version "on" --cpu_display "infobar" \
|
|
--memory_display "infobar" --disk_display "infobar"
|