tests
[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 set -e
8
9 DEBIAN_FRONTEND=noninteractive apt-get install -y \
10     libexpat1-dev
11
12 yes | perl -MCPAN -e 'install XML::Parser'
13 yes | perl -MCPAN -e 'install Frontier::Client'