mirror of
https://github.com/Schrolli91/BOSWatch.git
synced 2025-12-05 23:32:02 +01:00
29 lines
640 B
YAML
29 lines
640 B
YAML
language: bash
|
|
|
|
sudo: required
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- develop
|
|
|
|
before_script:
|
|
- sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu trusty universe"
|
|
- sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu trusty main"
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -qq wget python2.7
|
|
|
|
- wget https://raw.githubusercontent.com/Schrolli91/BOSWatch/${TRAVIS_BRANCH}/install.sh
|
|
- chmod +x install.sh
|
|
- cat /etc/os-release
|
|
- echo ${TRAVIS_BRANCH}
|
|
- sudo ./install.sh -b ${TRAVIS_BRANCH}
|
|
|
|
env:
|
|
- module=base
|
|
- module=mysql
|
|
- module=httpRequest
|
|
|
|
script:
|
|
- sudo /bin/bash citest/test.sh
|