diff options
| author | jvoisin | 2019-06-20 12:54:56 +0200 |
|---|---|---|
| committer | jvoisin | 2019-06-20 13:17:43 +0200 |
| commit | 3330b988ae5f8ee6dd8388c85463886dd8dc88fa (patch) | |
| tree | ebee9ee3fb8871d5d3099fa7ab80855b97ec1c37 | |
| parent | 1b52614c06b60ced6caecd8dcaa0911ed3aa72e2 (diff) | |
Fix Alpine's build in the CI
PCRE must now be installed, since it's
not shipped with PHP by default anymore.
Fedora did it too, and was fixed in 3fe0d28.
| -rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e8014f9..85b03eb 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 | 32 | - apk add php7-dev php7-cgi php7-simplexml php7-xml make gcc musl-dev pcre |
| 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" |
