diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index a2137aa09a..da654a3740 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -74,7 +74,7 @@ jobs: sudo sysctl -w vm.swappiness=1 sudo sysctl -w fs.file-max=262144 sudo sysctl -w vm.max_map_count=262144 - ES_VERSION=${{ matrix.elasticsearch }} docker-compose --file=docker/docker-compose.proxy.yml --file=docker/docker-compose.es.yml up --detach + ES_VERSION=${{ matrix.elasticsearch }} docker compose --file=docker/docker-compose.proxy.yml --file=docker/docker-compose.es.yml up --detach docker run --rm --network=docker_elastic curlimages/curl --max-time 120 --retry-max-time 120 --retry 120 --retry-delay 5 --retry-all-errors --show-error --silent http://es01:9200 docker run --rm --network=docker_elastic curlimages/curl --max-time 120 --retry-max-time 120 --retry 120 --retry-delay 5 --retry-all-errors --show-error --silent http://es02:9200 diff --git a/Makefile b/Makefile index 9d3e51d761..8fac653d00 100644 --- a/Makefile +++ b/Makefile @@ -59,12 +59,12 @@ run-coveralls: tools/php-coveralls.phar -v tools/phpdocumentor.phar: - curl https://gitreleases.dev/gh/phpDocumentor/phpDocumentor/latest/phpDocumentor.phar -o tools/phpdocumentor.phar --silent -L; \ + curl http://www.phpdoc.org/phpDocumentor.phar -o tools/phpdocumentor.phar --silent -L; \ chmod +x tools/phpdocumentor.phar .PHONY: run-phpdoc run-phpdoc: tools/phpdocumentor.phar - tools/phpdocumentor.phar --directory=lib --target=build/docs --template=clean + tools/phpdocumentor.phar --directory=src --target=build/docs ## ## Docker commands