Skip to content

Commit d70304d

Browse files
committed
chore: add stable32 server version
Signed-off-by: Edward Ly <[email protected]>
1 parent ecfc07e commit d70304d

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.github/workflows/integration_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
matrix:
2929
php-versions: [ '8.3' ]
3030
databases: [ 'sqlite' ]
31-
server-versions: [ 'master', 'stable31', 'stable30' ]
31+
server-versions: [ 'master', 'stable32', 'stable31', 'stable30' ]
3232

3333
name: Integration test on ☁️${{ matrix.server-versions }} 🐘${{ matrix.php-versions }}
3434

Makefile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,14 @@ help:
2121
@echo " "
2222
@echo " run30 installs $(APP_NAME) for Nextcloud 30"
2323
@echo " run31 installs $(APP_NAME) for Nextcloud 31"
24+
@echo " run32 installs $(APP_NAME) for Nextcloud 32"
2425
@echo " run installs $(APP_NAME) for Nextcloud Latest"
2526
@echo " "
2627
@echo " > Commands for manual registration of ExApp($(APP_NAME) should be running!):"
2728
@echo " "
2829
@echo " register30 performs registration of running $(APP_NAME) into the 'manual_install' deploy daemon."
2930
@echo " register31 performs registration of running $(APP_NAME) into the 'manual_install' deploy daemon."
31+
@echo " register32 performs registration of running $(APP_NAME) into the 'manual_install' deploy daemon."
3032
@echo " register performs registration of running $(APP_NAME) into the 'manual_install' deploy daemon."
3133

3234

@@ -47,6 +49,12 @@ run31:
4749
docker exec master-stable31-1 sudo -u www-data php occ app_api:app:register $(APP_ID) \
4850
--info-xml https://raw.githubusercontent.com/nextcloud/$(APP_ID)/main/appinfo/info.xml
4951

52+
.PHONY: run32
53+
run32:
54+
docker exec master-stable32-1 sudo -u www-data php occ app_api:app:unregister $(APP_ID) --silent --force || true
55+
docker exec master-stable32-1 sudo -u www-data php occ app_api:app:register $(APP_ID) \
56+
--info-xml https://raw.githubusercontent.com/nextcloud/$(APP_ID)/main/appinfo/info.xml
57+
5058
.PHONY: run
5159
run:
5260
docker exec master-nextcloud-1 sudo -u www-data php occ app_api:app:unregister $(APP_ID) --silent --force || true
@@ -63,6 +71,11 @@ register31:
6371
docker exec master-stable31-1 sudo -u www-data php occ app_api:app:unregister $(APP_ID) --silent --force || true
6472
docker exec master-stable31-1 sudo -u www-data php occ app_api:app:register $(APP_ID) manual_install --json-info $(JSON_INFO) --wait-finish
6573

74+
.PHONY: register32
75+
register32:
76+
docker exec master-stable32-1 sudo -u www-data php occ app_api:app:unregister $(APP_ID) --silent --force || true
77+
docker exec master-stable32-1 sudo -u www-data php occ app_api:app:register $(APP_ID) manual_install --json-info $(JSON_INFO) --wait-finish
78+
6679
.PHONY: register
6780
register:
6881
docker exec master-nextcloud-1 sudo -u www-data php occ app_api:app:unregister $(APP_ID) --silent --force || true

0 commit comments

Comments
 (0)