Compare commits

..

1 Commits

Author SHA1 Message Date
b5b4359c92
add drone build
All checks were successful
continuous-integration/drone/push Build is passing
2023-10-30 09:28:45 +00:00
3 changed files with 34 additions and 2 deletions

32
.drone.yml Normal file
View File

@ -0,0 +1,32 @@
---
kind: pipeline
type: docker
name: deb-build
steps:
- name: build
image: ubuntu:22.04
commands:
- apt -y update
- apt -y install build-essential debhelper libssl-dev libpam-dev
- ./configure.sh
- make deb
- name: upload artifact
image: git.burble.dn42/burble.dn42/drone-gitea-pkg-plugin:latest
settings:
token:
from_secret: TOKEN
version: VERSION
artifact: emailrelay_2.5_amd64.deb
package: emailrelay
owner: burble.dn42
---
kind: secret
name: TOKEN
get:
path: burble.dn42/kv/data/drone/git.burble.dn42
name: artifact-token

View File

@ -170,7 +170,7 @@ GNet::Address GNet::DnsBlock::nameServerAddress( const std::string & s )
bool GNet::DnsBlock::isDomain( G::string_view s ) noexcept
{
if( G::Str::isNumeric(s,true) ) return false ;
G::string_view tld = G::Str::tailView( s , s.rfind('.') ) ;
G::string_view tld = G::Str::tailView( s , "."_sv ) ;
return tld.empty() || ( G::Str::isSimple(tld) && !G::Str::isNumeric(tld) ) ;
}

View File

@ -90,7 +90,7 @@ void GNet::Interfaces::loadImp( ExceptionSink es , std::vector<Item> & list )
if( rc == ERROR_BUFFER_OVERFLOW )
{
buffer.resize( size ) ;
p = G::buffer_cast<IP_ADAPTER_ADDRESSES*>( buffer ) ;
IP_ADAPTER_ADDRESSES * p = G::buffer_cast<IP_ADAPTER_ADDRESSES*>( buffer ) ;
rc = GetAdaptersAddresses( AF_UNSPEC , flags , nullptr , p , &size ) ;
}