Welcome to mirror list, hosted at ThFree Co, Russian Federation.

travis-helper.sh « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23e3943481230c784d57f2472aeb4a0f2881adb0 (plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/bash

# Sourced from https://github.com/travis-ci/travis-build/blob/master/lib/travis/build/script/templates/header.sh
# + Tweaked to display output and not show the status line
travis_wait() {
  local timeout=40
  local cmd="$@"
  local log_file=travis_wait_$$.log

  $cmd &
  local cmd_pid=$!

  travis_jigger $! $timeout $cmd &
  local jigger_pid=$!
  local result

  {
    wait $cmd_pid 2>/dev/null
    result=$?
    ps -p$jigger_pid &>/dev/null && kill $jigger_pid
  } || return 1

  if [ $result -eq 0 ]; then
echo -e "\n${GREEN}The command \"$TRAVIS_CMD\" exited with $result.${RESET}"
  else
echo -e "\n${RED}The command \"$TRAVIS_CMD\" exited with $result.${RESET}"
  fi

echo -e "\n${GREEN}Log:${RESET}\n"
  cat $log_file

  return $result
}

travis_jigger() {
  # helper method for travis_wait()
  local cmd_pid=$1
  shift
local timeout=40
  shift
local count=0

  # clear the line
  echo -e "\n"

  while [ $count -lt $timeout ]; do
count=$(($count + 1))
    #echo -ne "Still running ($count of $timeout): $@\r"

    # print invisible character
    echo -ne "\xE2\x80\x8B"
    sleep 60
  done

echo -e "\n${RED}Timeout (${timeout} minutes) reached. Terminating \"$@\"${RESET}\n"
  kill -9 $cmd_pid
}