Skip to content

Commit f7a335b

Browse files
committed
omit composer install
1 parent 010f71b commit f7a335b

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,20 @@ jobs:
2121
- nextcloudVersion: stable24
2222
phpVersion: 8.1
2323
runs-on: ubuntu-latest
24-
container: ubuntu:latest
24+
# container: ubuntu:latest
2525
services:
2626
openproject:
2727
image: openproject/community:12
28+
ports:
29+
- 8081:80
2830
env:
2931
OPENPROJECT_SECRET_KEY_BASE: secret
30-
OPENPROJECT_HOST__NAME: localhost:8081
32+
# OPENPROJECT_HOST__NAME: localhost:8081
3133
OPENPROJECT_HTTPS: false
3234
OPENPROJECT_PASSWORD__MIN__LENGTH: 0
3335
OPENPROJECT_ONBOARDING__ENABLED: false
3436
OPENPROJECT_AUTHENTICATION_GLOBAL__BASIC__AUTH_USER: apiadmin
3537
OPENPROJECT_AUTHENTICATION_GLOBAL__BASIC__AUTH_PASSWORD: apiadmin
36-
HOST: 0.0.0.0
37-
OPENPROJECT_DEV_EXTRA_HOSTS: localhost
3838
steps:
3939
- name: Cancel previous runs
4040
uses: styfle/[email protected]
@@ -83,7 +83,8 @@ jobs:
8383

8484
- name: Install PHP Dependencies
8585
run: |
86-
composer install --no-progress --prefer-dist --optimize-autoloader --no-dev
86+
apt-get install git
87+
composer install --no-progress --prefer-dist --optimize-autoloader
8788
git clone --depth 1 https://github.com/nextcloud/server.git -b ${{ matrix.nextcloudVersion }}
8889
cd server && git submodule update --init
8990
./occ maintenance:install --admin-pass=admin

0 commit comments

Comments
 (0)