Skip to content

Commit

Permalink
Build TTL for Malta and check it validity
Browse files Browse the repository at this point in the history
  • Loading branch information
Hannah Bast committed Sep 23, 2023
1 parent abaa519 commit 523f1fb
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,13 @@ jobs:
- name: Docker build
run: |
docker build -f ${{matrix.dockerfile}} -t osm2rdf .
docker run --rm 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 -it --rm -v $(pwd):/data stain/jena riot --validate /data/osm-malta.ttl.bz2

0 comments on commit 523f1fb

Please sign in to comment.