forked from monitoringartist/zabbix-server-stress-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
40 lines (32 loc) · 883 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
sudo: required
notifications:
email:
on_success: never
on_failure: change
install:
- sudo apt-get update -qq
- sudo apt-get install -y wget autoconf automake gcc subversion make pkg-config
services:
- docker
language: c
compiler: gcc
branches:
only:
- master
before_script:
- "mkdir ~/zabbix30"
- "cd ~/zabbix30"
- "svn co svn://svn.zabbix.com/branches/3.0 ."
- "./bootstrap.sh"
- "./configure --enable-agent"
- "mkdir src/modules/zabbix_module_stress"
script:
- "cd src/modules/zabbix_module_stress"
- "cp /home/travis/build/monitoringartist/zabbix-server-stress-test/src/modules/zabbix_module_stress/* ."
- "make"
- "cd /home/travis/build/monitoringartist/zabbix-server-stress-test/"
- "bash ./artifacts/deploy.sh"
env:
global:
- ENCRYPTION_LABEL: "fe31b90a0e35"
- COMMIT_AUTHOR_EMAIL: "[email protected]"