annotate build.sh @ 32:d76d0651512f

Set -e, set PERL5LIB during build temporarily disable running the tests
author Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
date Thu, 17 Dec 2020 13:53:01 +0100 (2020-12-17)
parents a8bdee6b0128
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
29
a8bdee6b0128 Add two shell scripts for use in GitHub workflow
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents:
diff changeset
1 #!/bin/bash
a8bdee6b0128 Add two shell scripts for use in GitHub workflow
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents:
diff changeset
2
a8bdee6b0128 Add two shell scripts for use in GitHub workflow
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents:
diff changeset
3 set -e -x
a8bdee6b0128 Add two shell scripts for use in GitHub workflow
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents:
diff changeset
4
32
d76d0651512f Set -e, set PERL5LIB during build
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents: 29
diff changeset
5 export PERL5LIB=$PWD/MonetDB-CLI-MapiPP:$PWD/MonetDB-CLI:$PWD
d76d0651512f Set -e, set PERL5LIB during build
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents: 29
diff changeset
6
29
a8bdee6b0128 Add two shell scripts for use in GitHub workflow
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents:
diff changeset
7 for i in DBD MonetDB-CLI/MonetDB MonetDB-CLI-MapiPP/MonetDB/CLI
a8bdee6b0128 Add two shell scripts for use in GitHub workflow
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents:
diff changeset
8 do
a8bdee6b0128 Add two shell scripts for use in GitHub workflow
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents:
diff changeset
9 (
a8bdee6b0128 Add two shell scripts for use in GitHub workflow
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents:
diff changeset
10 cd $i
a8bdee6b0128 Add two shell scripts for use in GitHub workflow
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents:
diff changeset
11 perl Makefile.PL
a8bdee6b0128 Add two shell scripts for use in GitHub workflow
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents:
diff changeset
12 make
a8bdee6b0128 Add two shell scripts for use in GitHub workflow
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents:
diff changeset
13 )
a8bdee6b0128 Add two shell scripts for use in GitHub workflow
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents:
diff changeset
14 done