-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sh
executable file
·60 lines (49 loc) · 1.31 KB
/
build.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
56
57
58
59
60
#! /bin/bash
CONDA_BUILD_CMD="conda build --no-anaconda-upload"
# Speedup version with boa (conda install -n base boa)
#CONDA_BUILD_CMD="conda mambabuild --no-anaconda-upload"
echo -e "### Building Getopt::Euclid... \n"
$CONDA_BUILD_CMD perl-getopt-euclid
code=$?
if [ $code = 0 ]; then
echo "SUCCESS : Building Getopt::Euclid DONE."
else
echo "FAIL : Building Getopt::Euclid FAILED."
exit $code
fi
echo -e "### Building Test::Number::Delta... \n"
$CONDA_BUILD_CMD perl-test-number-delta
code=$?
if [ $code = 0 ]; then
echo "SUCCESS : Building Test::Number::Delta DONE."
else
echo "FAIL : Building Test::Number::Delta FAILED."
exit $code
fi
echo -e "### Building Math::Random::MT... \n"
$CONDA_BUILD_CMD perl-math-random-mt
code=$?
if [ $code = 0 ]; then
echo "SUCCESS : Building Math::Random::MT DONE."
else
echo "FAIL : Building Math::Random::MT FAILED."
exit $code
fi
echo -e "### Building Grinder... \n"
$CONDA_BUILD_CMD grinder
code=$?
if [ $code = 0 ]; then
echo "SUCCESS : Building Grinder DONE."
else
echo "FAIL : Building Grinder FAILED."
exit $code
fi
echo -e "### Building IntronSeeker... \n"
$CONDA_BUILD_CMD intronseeker
code=$?
if [ $code = 0 ]; then
echo "SUCCESS : Building IntronSeeker DONE."
else
echo "FAIL : Building IntronSeeker FAILED."
exit $code
fi