Skip to content

Commit e55b798

Browse files
committed
Try to run cgimap --help on all docker images
1 parent 6c0c600 commit e55b798

File tree

4 files changed

+30
-7
lines changed

4 files changed

+30
-7
lines changed

.github/workflows/docker_2004.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,15 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@v4
10+
- name: Checkout
11+
uses: actions/checkout@v4
1112

1213
- name: Build Docker images
1314
uses: docker/build-push-action@v5
1415
with:
15-
file: docker/ubuntu/Dockerfile
16+
file: docker/ubuntu/Dockerfile
17+
load: true
18+
tags: cgimap:2004
19+
- name: Running Docker image
20+
run: |
21+
docker run --entrypoint /bin/bash cgimap:2004 -c "/usr/local/bin/openstreetmap-cgimap --help"

.github/workflows/docker_2204.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,15 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@v4
10+
- name: Checkout
11+
uses: actions/checkout@v4
1112

1213
- name: Build Docker images
1314
uses: docker/build-push-action@v5
1415
with:
15-
file: docker/ubuntu/Dockerfile2204
16+
file: docker/ubuntu/Dockerfile2204
17+
load: true
18+
tags: cgimap:2204
19+
- name: Running Docker image
20+
run: |
21+
docker run --entrypoint /bin/bash cgimap:2204 -c "/usr/local/bin/openstreetmap-cgimap --help"

.github/workflows/docker_bookworm.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,15 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@v4
10+
- name: Checkout
11+
uses: actions/checkout@v4
1112

1213
- name: Build Docker images
1314
uses: docker/build-push-action@v5
1415
with:
1516
file: docker/debian/Dockerfile_bookworm
16-
17+
load: true
18+
tags: cgimap:bookworm
19+
- name: Running Docker image
20+
run: |
21+
docker run --entrypoint /bin/bash cgimap:bookworm -c "/usr/local/bin/openstreetmap-cgimap --help"

.github/workflows/docker_trixie.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,16 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@v4
10+
- name: Checkout
11+
uses: actions/checkout@v4
1112

1213
- name: Build Docker images
1314
uses: docker/build-push-action@v5
1415
with:
1516
file: docker/debian/Dockerfile_trixie
17+
load: true
18+
tags: cgimap:trixie
19+
- name: Running Docker image
20+
run: |
21+
docker run --entrypoint /bin/bash cgimap:trixie -c "/usr/local/bin/openstreetmap-cgimap --help"
1622

0 commit comments

Comments
 (0)