Skip to content

Commit

Permalink
fixing github actions steps and configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Ioannis committed Apr 14, 2026
1 parent f21483d commit 06ac5c1
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/registry-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ jobs:
env:
COMANAGE_REGISTRY_DIR: /srv/comanage-registry

# Pin Docker API for PHP Testcontainers (daemon supports max 1.44)
DOCKER_API_VERSION: "1.44"

# Values used by your PHPUnit setup test
COMANAGE_REGISTRY_ADMIN_GIVEN_NAME: Admin
COMANAGE_REGISTRY_ADMIN_FAMILY_NAME: User
Expand All @@ -41,6 +38,13 @@ jobs:
cat /etc/os-release
uname -a
- name: Upgrade OS version
shell: bash
run: |
set -euxo pipefail
sudo apt-get update
sudo apt-get upgade -y
- name: Checkout (only for workflow files)
shell: bash
run: |
Expand All @@ -55,7 +59,6 @@ jobs:
shell: bash
run: |
set -euxo pipefail
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
software-properties-common ca-certificates gnupg
sudo add-apt-repository -y ppa:ondrej/php
Expand Down Expand Up @@ -141,7 +144,5 @@ jobs:
DB_ENGINE: ${{ matrix.db_engine }}
run: |
set -euxo pipefail
echo "DOCKER_API_VERSION=${DOCKER_API_VERSION}"
export DOCKER_API_VERSION
cd "${COMANAGE_REGISTRY_DIR}"/app
DB_ENGINE="${DB_ENGINE}" vendor/bin/phpunit --testsuite app

0 comments on commit 06ac5c1

Please sign in to comment.