File tree Expand file tree Collapse file tree 6 files changed +14
-11
lines changed Expand file tree Collapse file tree 6 files changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -30,12 +30,12 @@ jobs:
30
30
- name : " LEGACY"
31
31
php : " 8.2"
32
32
pg-postgis : " 14-3"
33
- qgis-server : " 3.40 "
33
+ qgis-server : " qgis-ltr-eager "
34
34
update-projects : " FALSE"
35
35
- name : " BLEEDING_EDGE"
36
36
php : " 8.3"
37
37
pg-postgis : " 17-3"
38
- qgis-server : " 3.40 "
38
+ qgis-server : " qgis-release-eager "
39
39
update-projects : " TRUE"
40
40
env :
41
41
CYPRESS_CI : TRUE
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ show-qgis-server-versions:
63
63
docker run \
64
64
-u $(LIZMAP_USER_ID ) :$(LIZMAP_GROUP_ID ) \
65
65
--rm -i \
66
- -e QGSRV_SERVER_PLUGINPATH =/srv/plugins \
66
+ -e QGIS_PLUGINPATH =/srv/plugins \
67
67
-e QGIS_PLUGIN_MANAGER_SKIP_SOURCES_FILE=True \
68
68
-v $(shell pwd) /qgis-server-plugins:/srv/plugins \
69
69
-v $(shell pwd) /:/src \
@@ -83,11 +83,11 @@ upgrade-projects:
83
83
3liz/qjazz:${LZMQGSRVVERSION} \
84
84
85
85
up : env
86
- docker compose up -V --force-recreate -d
86
+ docker compose --profile=swagger --profile=webdav up -V --force-recreate -d
87
87
88
88
stop :
89
- docker compose stop
89
+ docker compose --profile=swagger --profile=webdav stop
90
90
91
91
reset :
92
- docker compose down -v --remove-orphans
92
+ docker compose --profile=swagger --profile=webdav down -v --remove-orphans
93
93
./lizmap-ctl clean
Original file line number Diff line number Diff line change @@ -123,6 +123,8 @@ services:
123
123
- { type: bind, source: ./api, target: /api }
124
124
ports :
125
125
- ${SWAGGER_PORT}:8080
126
+ profiles :
127
+ - swagger
126
128
volumes :
127
129
pg_data :
128
130
name : " lizmap${LZMBRANCH}_pg_data"
Original file line number Diff line number Diff line change @@ -36,5 +36,5 @@ route = "/"
36
36
37
37
[[backends .root .api ]]
38
38
endpoint = " lizmap"
39
- name = " Lizmap api "
39
+ name = " Lizmap"
40
40
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export default defineConfig({
4
4
testDir : './playwright' ,
5
5
snapshotPathTemplate : '{testDir}/__screenshots__/{testFilePath}/{arg}{ext}' ,
6
6
/* Maximum time one test can run for. */
7
- timeout : 30 * 1000 ,
7
+ timeout : 10 * 1000 ,
8
8
expect : {
9
9
/**
10
10
* Maximum time expect() should wait for the condition to be met.
@@ -17,7 +17,8 @@ export default defineConfig({
17
17
/* Fail the build on CI if you accidentally left test.only in the source code. */
18
18
forbidOnly : ! ! process . env . CI ,
19
19
/* Retry on CI only */
20
- retries : process . env . CI ? 2 : 0 ,
20
+ /* retries: process.env.CI ? 2 : 0, */
21
+ retries : 0 ,
21
22
/* Opt out of parallel tests on CI. */
22
23
workers : process . env . CI ? 2 : undefined ,
23
24
/* Reporter to use. */
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ if [ "$CMD" == "reset" ]; then
18
18
exit 0
19
19
elif [ " $CMD " == " build" ]; then
20
20
# install or update base images, to be sure we have the latest images
21
- docker compose pull
21
+ docker compose --profile=webdav --profile=swagger pull
22
22
fi
23
23
24
- docker compose $CMD " $@ "
24
+ docker compose --profile=webdav --profile=swagger $CMD " $@ "
You can’t perform that action at this time.
0 commit comments