-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.sh
55 lines (43 loc) · 1.02 KB
/
action.sh
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
#!/usr/bin/env bash
set -e
td=$( dirname "$( realpath "${0}" )" )
if [[ -z "${1}" ]]
then
echo "Path to the coverage folder is required and must be specified."
exit 1
fi
if [[ ! -d "${1}" ]]
then
echo "Path to the coverage folder is invalid: \"${1}\"."
exit 1
fi
if [[ ! -f "${1}/coverage.xml" ]]
then
echo "Coverage folder is invalid, missing clover file: \"${1}/coverage.xml\"."
exit 1
fi
if [[ ! -d "${1}/_css" ]]
then
echo "Coverage folder is invalid, missing sub-folder: \"${1}/_css\"."
exit 1
fi
if [[ ! -d "${1}/_js" ]]
then
echo "Coverage folder is invalid, missing sub-folder: \"${1}/_js\"."
exit 1
fi
if [[ ! -d "${1}/_icons" ]]
then
echo "Coverage folder is invalid, missing sub-folder: \"${1}/_icons\"."
exit 1
fi
cd "${1}"
echo "Fixing coverage paths"
php "${td}/fix.php"
echo "Generating coverage badge"
"${td}/vendor/bin/php-coverage-badger" coverage.xml coverage.svg
if [[ -n "${2}" ]]
then
echo "Encrypting coverage files"
node "${td}/encrypt.js" "${2}"
fi