build on PRs; nitpicks
[plcapi.git] / tests / ci / setup / setup_perl.sh
1 #!/bin/sh
2
3 # Installs php modules necessary to test the Perl file in the extras dir
4
5 # Has to be run as admin
6
7 # @todo test in the VM env: do we need any ubuntu dev packages ?
8
9 set -e
10
11 DEBIAN_FRONTEND=noninteractive apt-get install -y \
12     libexpat1-dev
13
14 yes | perl -MCPAN -e 'install XML::Parser'
15 yes | perl -MCPAN -e 'install Frontier::Client'