Skip to content

Commit 5c62fb7

Browse files
susnuxCarlSchwan
authored andcommitted
test: enable files_external for tests
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
1 parent 044adfc commit 5c62fb7

8 files changed

Lines changed: 4790 additions & 259 deletions

File tree

.github/workflows/node.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,17 @@ jobs:
2626

2727
outputs:
2828
src: ${{ steps.changes.outputs.src}}
29+
deps: ${{ steps.changes.outputs.deps}}
2930

3031
steps:
3132
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
3233
id: changes
3334
continue-on-error: true
3435
with:
3536
filters: |
37+
deps:
38+
- 'package.json'
39+
- 'package-lock.json'
3640
src:
3741
- '.github/workflows/**'
3842
- 'src/**'
@@ -73,6 +77,7 @@ jobs:
7377
run: npm i -g 'npm@${{ steps.versions.outputs.npmVersion }}'
7478

7579
- name: Validate package-lock.json # See https://github.com/npm/cli/issues/4460
80+
if: needs.changes.outputs.deps != 'false'
7681
run: |
7782
npm i -g npm-package-lock-add-resolved@1.1.4
7883
npm-package-lock-add-resolved

.github/workflows/phpunit-mariadb.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,14 @@ jobs:
104104
persist-credentials: false
105105
path: apps/${{ env.APP_NAME }}
106106

107+
- name: Checkout viewer
108+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
109+
with:
110+
persist-credentials: false
111+
path: apps/viewer
112+
ref: ${{ matrix.server-versions }}
113+
repository: nextcloud/viewer
114+
107115
- name: Set up php ${{ matrix.php-versions }}
108116
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
109117
with:

.github/workflows/phpunit-sqlite.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,14 @@ jobs:
9494
persist-credentials: false
9595
path: apps/${{ env.APP_NAME }}
9696

97+
- name: Checkout viewer
98+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
99+
with:
100+
persist-credentials: false
101+
path: apps/viewer
102+
ref: ${{ matrix.server-versions }}
103+
repository: nextcloud/viewer
104+
97105
- name: Set up php ${{ matrix.php-versions }}
98106
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
99107
with:

appinfo/info.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
<screenshot>https://raw.githubusercontent.com/nextcloud/maps/master/screenshots/screenshot2.png</screenshot>
3636
<screenshot>https://raw.githubusercontent.com/nextcloud/maps/master/screenshots/screenshot3.png</screenshot>
3737
<dependencies>
38-
<php min-version="8.1" max-version="8.4"/>
38+
<php min-version="8.1" max-version="8.5"/>
3939
<lib>exif</lib>
40-
<nextcloud min-version="31" max-version="32"/>
40+
<nextcloud min-version="32" max-version="33"/>
4141
</dependencies>
4242
<repair-steps>
4343
<post-migration>

0 commit comments

Comments
 (0)