blob: 4de9b84410d7e3370f279fe5b1dbc9e8a56f7fc1 [file] [log] [blame]
Rebecca Wilmafbcd7f2022-11-09 16:46:48 +01001default:
2 image: python:3.6
3
4variables:
5 PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
6
7cache:
8 paths:
9 - .cache/pip
10 - venv/
11
12before_script:
13 - python -m venv venv
14 - source venv/bin/activate
15 - export PYTHONPATH=PYTHONPATH:.
16 - pip install -r requirements.txt
17 - python -m spacy download de_core_news_lg
18 - apt update -y
19 - apt-get install cpanminus -y
20 - cpanm https://github.com/KorAP/KorAP-XML-CoNLL-U.git
21
22test-job:
23 stage: test
24 script:
25 - mkdir logs
26 - korapxml2conllu rei.zip | python ./systems/parse_spacy_pipe.py | conllu2korapxml > rei.spacy.zip