Add workflow for end-to-end test (using Docker) #3
Workflow file for this run
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 build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
merge_group: | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
dockerfile: [ Dockerfile] | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Docker build | |
run: | | |
docker build -f ${{matrix.dockerfile}} -t osm2rdf . | |
docker run --rm osm2rdf --help | |
- name: Build TTL for Malta and check its validity | |
run: | | |
mkdir osm-malta && cd $_ | |
curl -L -o osm-malta.pbf https://download.geofabrik.de/europe/malta-latest.osm.pbf | |
ls -l osm-malta.pbf | |
docker run --rm -v $(pwd):/data osm2rdf /data/osm-malta.pbf -o /data/osm-malta.ttl | |
ls -l osm-malta.pbf osm-malta.ttl.bz2 | |
docker run --rm -v $(pwd):/data stain/jena riot --validate /data/osm-malta.ttl.bz2 |