Docker PostGIS CI #115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker PostGIS CI | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '15 5 * * 1' | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
make-docker-images: | |
strategy: | |
matrix: | |
postgres: [11, 12, 13, 14, 15] | |
postgis: ['3.3'] | |
variant: [default, alpine] | |
include: | |
- postgres: 14 | |
postgis: master | |
variant: default | |
- postgres: 15 | |
postgis: master | |
variant: default | |
name: Build docker image for ${{ matrix.postgres }}-${{ matrix.postgis }} variant ${{ matrix.variant }} | |
runs-on: ubuntu-20.04 | |
continue-on-error: ${{ matrix.postgis == 'master' }} | |
env: | |
VERSION: ${{ matrix.postgres }}-${{ matrix.postgis }} | |
VARIANT: ${{ matrix.variant }} | |
REPO_NAME: juank | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
- name: Build docker image for ${{ env.VERSION }} ${{ env.VARIANT }} | |
run: make test | |
- name: Login to dockerhub | |
uses: docker/login-action@v1 | |
if: ${{ (github.ref == 'refs/heads/raster_fork') && (github.event_name != 'pull_request') }} | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} | |
- name: Push docker image to dockerhub | |
if: ${{ (github.ref == 'refs/heads/raster_fork') && (github.event_name != 'pull_request') }} | |
env: | |
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
DOCKERHUB_ACCESS_TOKEN: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} | |
run: make push | |