Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: udpate some action #291

Merged
merged 2 commits into from Mar 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
152 changes: 72 additions & 80 deletions .github/workflows/ci.yml
@@ -1,12 +1,12 @@
name: Continuous Integration

'on':
"on":
push:
branches: [ "main" ]
branches: ["main"]
pull_request:
branches: [ "main" ]
branches: ["main"]
schedule:
- cron: '0 0 * * MON'
- cron: "0 0 * * MON"

permissions:
contents: read
Expand All @@ -16,95 +16,87 @@ jobs:
name: Check Dockerfile
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v4

- name: Check php/Dockerfile
uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: infrastructure/docker/services/php/Dockerfile
- name: Check php/Dockerfile
uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: infrastructure/docker/services/php/Dockerfile

ci:
name: Test with PHP ${{ matrix.php-version }}
strategy:
fail-fast: false
matrix:
php-version: ['8.1', '8.2', '8.3']
php-version: ["8.1", "8.2", "8.3"]
runs-on: ubuntu-latest
env:
DS_PHP_VERSION: ${{ matrix.php-version }}
BUILDKIT_PROGRESS: plain
CI: 1
steps:
-
uses: actions/checkout@v3
- uses: actions/checkout@v4

# Setup

-
name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
tools: castor

-
name: 'Build and start the infrastructure'
run: 'castor start && sleep 5'

-
name: 'Check PHP coding standards'
run: 'castor qa:cs'

-
name: 'Run PHPStan'
run: 'castor qa:phpstan'

-
name: 'Test HTTP server'
run: |
set -e
set -o pipefail

curl --fail --insecure --silent -H "Host: app.test" https://127.0.0.1 | grep "Hello world"
curl --fail --insecure --silent -H "Host: app.test" https://127.0.0.1 | grep "${{ matrix.php-version }}"

-
name: 'Test builder'
run: |
set -e
set -o pipefail

cat > .castor/test.php <<'EOPHP'
<?php

use Castor\Attribute\AsTask;
use function docker\docker_compose_run;

#[AsTask()]
function test()
{
docker_compose_run('echo "Hello World"');
}
EOPHP

castor test | grep "Hello World"

-
name: 'Test communication with DB'
run: |
set -e
set -o pipefail

cat > application/public/index.php <<'EOPHP'
<?php
$pdo = new PDO('pgsql:host=postgres;dbname=app', 'app', 'app');
$pdo->exec('CREATE TABLE test (id integer NOT NULL)');
$pdo->exec('INSERT INTO test VALUES (1)');
echo $pdo->query('SELECT * from test')->fetchAll() ? 'database OK' : 'database KO';
EOPHP

# FPM seems super slow to detect the change, we need to wait a bit
sleep 3

curl --fail --insecure --silent -H "Host: app.test" https://127.0.0.1 | grep "database OK"
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
tools: castor

- name: "Build and start the infrastructure"
run: "castor start && sleep 5"

- name: "Check PHP coding standards"
run: "castor qa:cs"

- name: "Run PHPStan"
run: "castor qa:phpstan"

- name: "Test HTTP server"
run: |
set -e
set -o pipefail

curl --fail --insecure --silent -H "Host: app.test" https://127.0.0.1 | grep "Hello world"
curl --fail --insecure --silent -H "Host: app.test" https://127.0.0.1 | grep "${{ matrix.php-version }}"

- name: "Test builder"
run: |
set -e
set -o pipefail

cat > .castor/test.php <<'EOPHP'
<?php

use Castor\Attribute\AsTask;
use function docker\docker_compose_run;

#[AsTask()]
function test()
{
docker_compose_run('echo "Hello World"');
}
EOPHP

castor test | grep "Hello World"

- name: "Test communication with DB"
run: |
set -e
set -o pipefail

cat > application/public/index.php <<'EOPHP'
<?php
$pdo = new PDO('pgsql:host=postgres;dbname=app', 'app', 'app');
$pdo->exec('CREATE TABLE test (id integer NOT NULL)');
$pdo->exec('INSERT INTO test VALUES (1)');
echo $pdo->query('SELECT * from test')->fetchAll() ? 'database OK' : 'database KO';
EOPHP

# FPM seems super slow to detect the change, we need to wait a bit
sleep 3

curl --fail --insecure --silent -H "Host: app.test" https://127.0.0.1 | grep "database OK"