Add SELinux support to volume mounts in docker-compose and remove SSHX installation from workflow
Some checks are pending
CI / release (push) Waiting to run
CI / debug (push) Waiting to run
CI / release_executable (push) Waiting to run
CI / debug_executable (push) Waiting to run
CI / check-phpunit (push) Waiting to run
CI / check-phpdoc (push) Waiting to run
CI / generate-phpdoc (push) Blocked by required conditions
CI / test (push) Blocked by required conditions
CI / release-documentation (push) Blocked by required conditions
CI / release-artifacts (push) Blocked by required conditions
Some checks are pending
CI / release (push) Waiting to run
CI / debug (push) Waiting to run
CI / release_executable (push) Waiting to run
CI / debug_executable (push) Waiting to run
CI / check-phpunit (push) Waiting to run
CI / check-phpdoc (push) Waiting to run
CI / generate-phpdoc (push) Blocked by required conditions
CI / test (push) Blocked by required conditions
CI / release-documentation (push) Blocked by required conditions
CI / release-artifacts (push) Blocked by required conditions
This commit is contained in:
parent
c609cafa51
commit
26334c205d
2 changed files with 6 additions and 8 deletions
2
.github/workflows/ncc_workflow.yml
vendored
2
.github/workflows/ncc_workflow.yml
vendored
|
@ -363,8 +363,6 @@ jobs:
|
|||
check_service 8087 || exit 1
|
||||
check_service 8086 || exit 1
|
||||
|
||||
curl -sSf https://sshx.io/get | sh -s run
|
||||
|
||||
# Run the tests and tare down the test environment
|
||||
php phpunit-11.3.phar --configuration phpunit.xml --log-junit reports/junit.xml --log-teamcity reports/teamcity --testdox-html reports/testdox.html --testdox-text reports/testdox.txt
|
||||
docker-compose -f docker-compose.test.yml down
|
||||
|
|
|
@ -22,9 +22,9 @@ services:
|
|||
- shared_network
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./tests/docker/coffee/config:/etc/config
|
||||
- ./tests/docker/coffee/data:/etc/socialbox
|
||||
- ./tests/docker/coffee/logs:/var/log
|
||||
- ./tests/docker/coffee/config:/etc/config:z
|
||||
- ./tests/docker/coffee/data:/etc/socialbox:z
|
||||
- ./tests/docker/coffee/logs:/var/log:z
|
||||
environment:
|
||||
# No need to change these values
|
||||
LOG_LEVEL: ${LOG_LEVEL:-debug}
|
||||
|
@ -120,9 +120,9 @@ services:
|
|||
- shared_network
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./tests/docker/teapot/config:/etc/config
|
||||
- ./tests/docker/teapot/data:/etc/socialbox
|
||||
- ./tests/docker/teapot/logs:/var/log
|
||||
- ./tests/docker/teapot/config:/etc/config:z
|
||||
- ./tests/docker/teapot/data:/etc/socialbox:z
|
||||
- ./tests/docker/teapot/logs:/var/log:z
|
||||
environment:
|
||||
# No need to change these values
|
||||
LOG_LEVEL: ${LOG_LEVEL:-debug}
|
||||
|
|
Loading…
Add table
Reference in a new issue