feat: allow running updater as one-off command #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 test run as command | |
on: | |
push: | |
branches: | |
- 'main' | |
tags: | |
- '*' | |
pull_request: | |
jobs: | |
docker-test: | |
env: | |
COMPOSE_ARGS: -f docker-compose.yml -f docker-compose.ci.command.yml | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: docker-compose up | |
run: docker-compose ${{ env.COMPOSE_ARGS }} up -d | |
- name: Run updater | |
run: | | |
docker compose exec wdqs-updater /wdqsup/runUpdateWbStack.sh -- \ | |
--wikibaseHost wikibase.svc | |
--ids Q1,Q2 \ | |
--entityNamespaces wdq \ | |
--sparqlUrl http://wdqs.svc:9999/bigdata/namespace/wdq/sparql \ | |
--wikibaseScheme http \ | |
--conceptUri https://wikibase.svc | |
- name: Make a sparql request | |
run: | | |
NUM_BINDINGS=$(curl 'http://localhost:9999/bigdata/namespace/wdq/sparql' -H 'Accept: application/sparql-results+json' --data-raw 'query=SELECT+*+WHERE%7B+%3Fs+%3Fp+%3Fo+%7D' | jq '.results.bindings | length') | |
# should be plenty more than 100 | |
if [[ "$NUM_BINDINGS" -lt 100 ]]; then | |
exit 1 | |
fi | |
- name: docker-compose logs > output.log | |
if: always() | |
run: docker-compose ${{ env.COMPOSE_ARGS }} logs --no-color > "output.log" | |
- name: Archive output.log | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: DockerTestLog | |
if-no-files-found: error | |
path: output.log | |