Bump symfony/process from 6.3.4 to 6.4.14 #247
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration tests | |
on: | |
push: | |
pull_request: | |
permissions: | |
contents: read # to clone the repos and get release assets (shivammathur/setup-php) | |
concurrency: | |
group: ${{ github.event_name }}-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
integration: | |
permissions: | |
contents: read # to clone the repos and get release assets (shivammathur/setup-php) | |
name: Integration tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: [ '8.1', '8.2', '8.3' ] | |
prestashop_version: ['develop', '9.0.x'] | |
fail-fast: false | |
steps: | |
- name: Checkout module code | |
uses: actions/checkout@v3 | |
with: | |
path: ps_apiresources | |
- uses: actions/checkout@v3 | |
name: Checkout PrestaShop repository | |
with: | |
fetch-depth: 0 | |
repository: PrestaShop/PrestaShop | |
path: prestashop | |
ref: ${{ matrix.prestashop_version }} | |
- name: Build Docker | |
env: | |
VERSION: ${{ matrix.php }}-apache | |
run: | | |
cd prestashop | |
USER_ID=$(id -u) GROUP_ID=$(id -g) PS_INSTALL_AUTO=0 docker compose build --no-cache && docker compose up -d --force-recreate | |
if [ $? -ne 0 ]; then | |
echo "docker install failed" | |
exit | |
fi | |
bash -l -c 'while [[ "$(curl -L -s -o /dev/null -w %{http_code} 'http://localhost:8001/install-dev/')" != "200" ]]; do echo "waiting for shop install"; sleep 5; done' | |
USER_ID=$(id -u) GROUP_ID=$(id -g) docker exec prestashop-prestashop-git-1 php bin/console prestashop:module uninstall ps_apiresources | |
- name: Install Module | |
run: | | |
rm -rf prestashop/modules/ps_apiresources | |
mkdir -p prestashop/modules/ps_apiresources | |
cp -r ps_apiresources/* prestashop/modules/ps_apiresources | |
ls -l prestashop/modules/ps_apiresources | |
USER_ID=$(id -u) GROUP_ID=$(id -g) docker exec prestashop-prestashop-git-1 composer install --no-interaction --working-dir=/var/www/html/modules/ps_apiresources | |
USER_ID=$(id -u) GROUP_ID=$(id -g) docker exec prestashop-prestashop-git-1 php bin/console prestashop:module install ps_apiresources | |
USER_ID=$(id -u) GROUP_ID=$(id -g) docker exec prestashop-prestashop-git-1 composer create-test-db | |
- name: Run integration tests | |
run : | | |
USER_ID=$(id -u) GROUP_ID=$(id -g) docker exec prestashop-prestashop-git-1 vendor/bin/phpunit -c modules/ps_apiresources/tests/Integration/phpunit-ci.xml |