47 lines
1.8 KiB
YAML
47 lines
1.8 KiB
YAML
clone:
|
|
git:
|
|
image: woodpeckerci/plugin-git
|
|
tags: true
|
|
|
|
pipeline:
|
|
test:
|
|
image: debian
|
|
commands:
|
|
- DEBIAN_FRONTEND=noninteractive apt-get -qq update < /dev/null > /dev/null
|
|
- DEBIAN_FRONTEND=noninteractive apt-get -y -qq upgrade < /dev/null > /dev/null
|
|
- DEBIAN_FRONTEND=noninteractive apt-get -qq -y install --no-install-recommends python3-all python3-dev python3-pip python3-venv build-essential pkg-config libsystemd-dev libldap2-dev libsasl2-dev libpq-dev libmariadb-dev wget unzip < /dev/null > /dev/null
|
|
- wget --no-verbose -O /opt/instantclient-basic-linux.x64-21.4.0.0.0dbru.zip https://download.oracle.com/otn_software/linux/instantclient/214000/instantclient-basic-linux.x64-21.4.0.0.0dbru.zip
|
|
- unzip -qq -d /opt /opt/instantclient-basic-linux.x64-21.4.0.0.0dbru.zip
|
|
- echo /opt/instantclient_* > /etc/ld.so.conf.d/oracle-instantclient.conf
|
|
- ldconfig
|
|
- ./tests.sh --quiet
|
|
when:
|
|
event: [push, tag]
|
|
build:
|
|
image: debian
|
|
when:
|
|
event: tag
|
|
tag: v*
|
|
branch: master
|
|
commands:
|
|
- DEBIAN_FRONTEND=noninteractive apt-get -qq update < /dev/null > /dev/null
|
|
- DEBIAN_FRONTEND=noninteractive apt-get -y -qq upgrade < /dev/null > /dev/null
|
|
- DEBIAN_FRONTEND=noninteractive apt-get -qq -y install --no-install-recommends git sed python3-all python3-dev python3-pip python3-venv dpkg-dev build-essential debhelper dh-python bash-completion lsb-release < /dev/null > /dev/null
|
|
- ./build.sh --quiet
|
|
- rm -fr deb_dist/python3-mylib-*
|
|
publish:
|
|
image: plugins/gitea-release
|
|
when:
|
|
event: tag
|
|
tag: v*
|
|
branch: master
|
|
settings:
|
|
api_key:
|
|
from_secret: gitea_token
|
|
base_url: https://gitea.zionetrix.net
|
|
files:
|
|
- dist/*
|
|
- deb_dist/*
|
|
checksum:
|
|
- md5
|
|
- sha512
|