-
Notifications
You must be signed in to change notification settings - Fork 4
33 lines (30 loc) · 941 Bytes
/
test-postprocess.yml
File metadata and controls
33 lines (30 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Postprocessing regression tests
on:
workflow_dispatch:
workflow_run:
workflows:
- Build Docker image
types:
- completed
jobs:
test:
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
runs-on: ubuntu-latest
strategy:
matrix:
register:
- repo: opengeospatial/bblocks
items: registereditems
- repo: ogcincubator/bblocks-examples
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
repository: ${{ matrix.register.repo }}
- name: OGC BB postprocess
uses: opengeospatial/bblocks-postprocess/postprocess@master
with:
items_dir: ${{ matrix.register.items || '_sources' }}
fail_on_error: 'true'
deploy_viewer: 'false'
github_base_url: 'https://dummy.github.io/${{ matrix.register.repo }}'