--- kind: pipeline type: exec name: default platform: os: linux arch: amd64 steps: - name: Run unit test environment: PYTHONPATH: . commands: - python test/__init__.py - name: Build package files commands: - python3 setup.py sdist bdist_wheel - name: Versie toevoegen aan download commands: - mkdir -p /usr/share/nginx/html/download/python/lmwsip - cd dist - for f in *;do if [ -f "${f}" ] ; then echo version error;exit 1;else cp "${f}" /usr/share/nginx/html/download/python/lmwsip;fi;done when: branch: - master