Skip to content

Bump osgeo/gdal from ubuntu-small-3.9.1 to ubuntu-small-3.9.2 #538

Bump osgeo/gdal from ubuntu-small-3.9.1 to ubuntu-small-3.9.2

Bump osgeo/gdal from ubuntu-small-3.9.1 to ubuntu-small-3.9.2 #538

---
name: Docker Image
on: # yamllint disable-line rule:truthy
pull_request:
paths:
- '**'
push:
branches:
- develop
paths:
- '**'
env:
IMAGE_NAME: opendatacube/explorer
jobs:
deployment-image-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build deployment Docker
run: |
make build-prod
make up-prod
- name: Sleep for 30 seconds
run: sleep 30s
shell: bash
- name: Prepare explorer schema
run: |
make init-odc
make schema
- name: Test ping
run: |
curl --show-error --fail \
--connect-timeout 5 \
--max-time 10 \
--retry 5 \
--retry-delay 0 \
--retry-max-time 40 \
"localhost:80/products" \
> /dev/null