Adjustments for pre18 and automatic building
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
lagertonne 2022-04-22 20:30:19 +02:00
parent ff84fef381
commit 184613df81
3 changed files with 32 additions and 1 deletions

24
.drone.yml Normal file
View file

@ -0,0 +1,24 @@
kind: pipeline
name: default
steps:
- name: Build
image: debian:bullseye
commands:
- apt update
- apt -y upgrade
- apt -y install --no-install-recommends build-essential equivs devscripts
- mk-build-deps --install --tool='apt-get -o Debug::pkgProblemResolver=yes --no-install-recommends --yes' debian/control
- dpkg-buildpackage -b -uc
- mkdir debian/release
- cp ../tinc*.deb
- find ..
#- name: gitea_release
# image: plugins/gitea-release
# settings:
# api_key:
# from_secret: GITEA_KEY
# base_url: https://git.neulandlabor.de/
# files: debian/release/*
# when:
# event: tag

7
debian/changelog vendored
View file

@ -1,3 +1,10 @@
tinc (1.1~pre18-1) experimental; urgency=medium
* Non-maintainer upload.
* New upstream 1.1pre18
-- lagertonne <mail@lagertonne.de> Wed, 10 Oct 2022 20:26:01 +0100
tinc (1.1~pre17-1.1) experimental; urgency=medium
* Non-maintainer upload.

View file

@ -5,7 +5,7 @@
AC_PREREQ(2.61)
-AC_INIT([tinc], m4_esyscmd_s((git describe || echo UNKNOWN) | sed 's/release-//'))
+AC_INIT([tinc], [1.1~pre17])
+AC_INIT([tinc], [1.1~pre18])
AC_CONFIG_SRCDIR([src/tincd.c])
AM_INIT_AUTOMAKE([std-options subdir-objects nostdinc silent-rules -Wall])
AC_CONFIG_HEADERS([config.h])