Skip to content

Commit

Permalink
echo the command using set -x
Browse files Browse the repository at this point in the history
  • Loading branch information
Hannah Bast committed Sep 23, 2023
1 parent 99a1911 commit b3bccf2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,13 @@ jobs:

- name: Docker build
run: |
set -x
docker build -f ${{matrix.dockerfile}} -t osm2rdf .
docker run --rm osm2rdf --help
- name: Build TTL for Malta and check its validity
run: |
set -x
mkdir osm-malta && cd $_
curl -L -o osm-malta.pbf https://download.geofabrik.de/europe/malta-latest.osm.pbf
ls -l osm-malta.pbf
Expand All @@ -41,6 +43,7 @@ jobs:
- name: Build QLever index and count the number of geometries
run: |
set -x
cd osm-malta
docker run -u $(id -u):$(id -g) -v $(pwd):/data -w /data --entrypoint bash adfreiburg/qlever -c "bzcat osm-malta.ttl.bz2 | IndexBuilderMain -F ttl -f - -i osm-malta"
docker run -d -p 7000:7000 -v $(pwd):/data -w /data --entrypoint bash --name qlever adfreiburg/qlever -c "ServerMain -i /data/osm-malta -p 7000"
Expand Down

0 comments on commit b3bccf2

Please sign in to comment.