Skip to content
Snippets Groups Projects
Commit d6f461ac authored by Tomasz Walkowiak's avatar Tomasz Walkowiak
Browse files

Python 3.8 added

parent ce32d2fb
No related branches found
No related tags found
No related merge requests found
Pipeline #7194 failed
stages:
- build
- deploy
- build3.8
- deploy3.8
build_deb:
stage: build
......@@ -31,7 +35,40 @@ push_deb:
only:
- master
script:
- FILE=$(ls src/build/corpus2*.deb)
- FILE=$(ls src/build/corpus2-python3.6.deb)
- curl --fail -i -X POST -F "file=@./${FILE}" -u "${APT_USERNAME}:${APT_PASSWORD}" https://apt.clarin-pl.eu/
dependencies:
build_deb3.8:
stage: build3.8
image: clarinpl/python:3.8
script:
- apt-get update && apt-get install -y
libxml++2.6-dev
libloki-dev
libboost-all-dev
libicu-dev
libffi-dev
libssl-dev
libxml2-utils
cmake
swig
pwrutils
gdebi-core
- mkdir src/build && cd src/build
- cmake .. && cmake --build . && cpack
artifacts:
paths:
- src/build/corpus2*.deb
expire_in: 1h
push_deb3.8:
stage: deploy3.8
image: clarinpl/cpp:16.04
only:
- master
script:
- FILE=$(ls src/build/corpus2-python3.8.deb)
- curl --fail -i -X POST -F "file=@./${FILE}" -u "${APT_USERNAME}:${APT_PASSWORD}" https://apt.clarin-pl.eu/
dependencies:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment