feat(ci): add CI
Some checks failed
continuous-integration/drone/push Build is failing

Signed-off-by: Julien CLEMENT <julien.clement@epita.fr>
This commit is contained in:
Julien CLEMENT 2021-11-06 02:42:38 +01:00
parent 39c8cc43d8
commit 335d8ba22c
3 changed files with 13 additions and 2 deletions

10
.drone.yml Normal file
View File

@ -0,0 +1,10 @@
kind: pipeline
name: build
steps:
- name: build
image: turboregistry:5000/juju/turbo-ci
commands:
- ./autogen.sh
- ./configure
- make

View File

@ -1,5 +1,6 @@
#pragma once
#include <unordered_map>
#include <optional>
#include "misc/buffer.hh"
#include "legislator/legislator.hh"

View File

@ -18,7 +18,7 @@ namespace misc
std::ostream& operator<<(std::ostream& os, const addrinfo&)
{
os << "addrinfo{"
<< "}";
os << std::string("addrinfo{")
<< std::string("}");
return os;
}