Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
geosphere-mapserver
Manage
Activity
Members
Labels
Plan
Issues
6
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cspp_geo
geosphere
geosphere-mapserver
Merge requests
!4
Fix CI bind mount issues
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix CI bind mount issues
debug-ci-curl-issues
into
master
Overview
0
Commits
22
Pipelines
2
Changes
2
Merged
David Hoese
requested to merge
debug-ci-curl-issues
into
master
2 years ago
Overview
0
Commits
22
Pipelines
2
Changes
2
Expand
👍
0
👎
0
Merge request reports
Compare
version 1
version 1
d2345b4e
2 years ago
master (base)
and
latest version
latest version
43bf0a43
22 commits,
2 years ago
version 1
d2345b4e
21 commits,
2 years ago
Show latest version
2 files
+
1
−
18
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
ci/test_mapserver_image.sh
+
1
−
12
Options
@@ -160,16 +160,7 @@ start_shapefile_test_container() {
start_pg_test_container
()
{
mkdir
pg_secrets
echo
"
${
POSTGRES_PASSWORD
}
"
>
pg_secrets/fake_file
chmod
a+rwx pg_secrets
ls
-ld
/tmp
ls
-ld
"
$(
pwd
)
"
ls
-ld
pg_secrets
ls
-l
pg_secrets
start_test_container
-v
"
$(
pwd
)
"
:
"/data"
-e
POSTGRES_HOST
=
${
PG_SERVER_NAME
}
-e
POSTGRES_PORT
=
${
PG_PORT
}
-e
POSTGRES_PASSWORD_FILE
=
"/data/pg_secrets/fake_file"
start_status
=
$?
docker
exec
-i
test ls
-ld
/data/pg_secrets
||
echo
"Failed to ls -d /data/pg_secrets"
docker
exec
-i
test ls
-l
/data/pg_secrets
||
echo
"Failed to ls /data/pg_secrets"
return
$start_status
}
# start_minio() {
@@ -207,9 +198,7 @@ curl_index() {
curl_layer_times
()
{
expected_result
=
$1
debug
"Starting curl basic time request..."
# NOTE: The time doesn't actually exist and no image data is available. A blank image should be returned
# TODO: Verify that the expected time is returned
time_result
=
$(
curl
"http://localhost:8888/wms_times/g16/abi/radf/C01"
)
time_result
=
$(
curl
--fail
-sS
"http://localhost:8888/wms_times/g16/abi/radf/C01"
)
time_status
=
$?
if
[[
$time_status
-ne
0
]]
;
then
return
$time_status
Loading