Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Mat-O-Lab/RDFConverter
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Hanke committed Jun 11, 2024
2 parents f669438 + 7395146 commit b65c482
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/TestExamples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ env:
WORKING_DIR: ./examples/
MAPPING_URL: 'https://github.com/Mat-O-Lab/MapToMethod/raw/main/examples/example-map.yaml'
PARSER_PORT: 3001
APP_MODE: "development"
APP_PORT: 5003
MAPPER_PORT: 4000
CONVERTER_PORT: 6000
CONVERTER_PORT: 5000
SSL_VERIFY: False

jobs:
TestExamples:
Expand All @@ -24,13 +26,18 @@ jobs:
fetch-depth: 0
- name: run app
run: |
docker-compose up -d
docker-compose -f docker-compose.develop.yml up -d
sleep 20
docker ps -a
- name: parse mapping to YARRRML parser
working-directory: ${{env.WORKING_DIR}}
continue-on-error: true
run: |
curl -X POST "http://localhost:${{env.APP_PORT}}/api/yarrrmltorml" -H "accept: text/turtle" -H "accept: application/json" -H "Content-Type: application/json" -d "{\"mapping_url\":\"${{env.MAPPING_URL}}\"}" > example.rml
- name: print logs
if: always()
run: |
docker-compose logs
- name: join the method and the data meta graph
working-directory: ${{env.WORKING_DIR}}
run: |
Expand Down

0 comments on commit b65c482

Please sign in to comment.