Archived
1
0
This repository has been archived on 2025-06-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
LuckyCoinkydink/bundled-libs/laminas/laminas-db/.laminas-ci/pre-run.sh
2021-04-27 21:30:20 +02:00

23 lines
358 B
Bash
Executable File

#!/bin/bash
set -e
TEST_USER=$1
WORKSPACE=$2
JOB=$3
COMMAND=$(echo "${JOB}" | jq -r '.command')
if [[ ! ${COMMAND} =~ phpunit ]]; then
exit 0
fi
PHP_VERSION=$(echo "${JOB}" | jq -r '.php')
# Install CI version of phpunit config
cp .laminas-ci/phpunit.xml phpunit.xml
# Install lsof (used in integration tests)
apt update -qq
apt install -yqq lsof