summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2019-07-09 10:37:22 +0200
committerjvoisin2019-07-09 11:05:11 +0200
commitbd399574d6b2bf7faa15c04c2bda03b73c16a011 (patch)
treeaed954a308a8c102ba513b5406be668a9f05cae9
parent75f735f734ed8024aa11256de453667915a477ed (diff)
Fix the Alpine Linux build
pcre is not bundled with PHP anymore in AlpineLinux, so we have to install it separately.
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 85b03eb..639f277 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -29,7 +29,7 @@ testsuite:alpine:
29 stage: testsuite 29 stage: testsuite
30 script: 30 script:
31 - apk update 31 - apk update
32 - apk add php7-dev php7-cgi php7-simplexml php7-xml make gcc musl-dev pcre 32 - apk add php7-dev php7-cgi php7-simplexml php7-xml make gcc musl-dev pcre-dev
33 - make compile_debug 33 - make compile_debug
34 - TEST_PHP_ARGS='-q' REPORT_EXIT_STATUS=1 make -C src test TESTS="tests/cookies_encryption tests/deny_writable tests/disable_function" 34 - TEST_PHP_ARGS='-q' REPORT_EXIT_STATUS=1 make -C src test TESTS="tests/cookies_encryption tests/deny_writable tests/disable_function"
35 - TEST_PHP_ARGS='-q' REPORT_EXIT_STATUS=1 make -C src test TESTS="tests/dump_request tests/eval_blacklist tests/global_strict" 35 - TEST_PHP_ARGS='-q' REPORT_EXIT_STATUS=1 make -C src test TESTS="tests/dump_request tests/eval_blacklist tests/global_strict"