ci: .drone.yml clean-up
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2021-04-15 09:36:23 +02:00
parent 8dd5fdabe4
commit 37385950de
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -120,7 +120,7 @@ steps:
commands:
- printf "$SHELL\n"
- printf "$PATH\n"
- dnf install -y git make cmake lld binutils gcc gcc-c++ libgcc libstdc++-{devel,static} glibc-devel openmpi-devel bison flex grpc-devel grpc-cli grpc-cpp grpc-plugins protobuf-c-devel protobuf-c-compiler protobuf-compiler cppunit log4cpp-devel json-c-devel capnproto-devel capnproto-libs libpcap-devel hiredis-devel mongo-c-driver-devel mongo-c-driver-libs boost-devel boost-{atomic,chrono,date-time,system,program-options,regex,thread} libtool libtool-ltdl which autoconf automake pkgconf openssl-devel kernel-devel ncurses-{c++-libs,devel,libs,static}
- dnf install -y git make {c,auto}make autoconf lld binutils gcc gcc-c++ libgcc libstdc++-{devel,static} glibc-devel openmpi-devel bison flex grpc-{cli,cpp,devel,plugins} protobuf-c-{devel,compiler} protobuf-compiler cppunit log4cpp-devel json-c-devel capnproto-{devel,libs} libpcap-devel hiredis-devel mongo-c-driver-{devel,libs} boost-{devel,atomic,chrono,date-time,system,program-options,regex,thread} libtool libtool-ltdl which pkgconf openssl-devel kernel-devel ncurses-{c++-libs,devel,libs,static}
- dnf clean all -y
- name: build-install-nDPI
@ -142,18 +142,6 @@ steps:
- make install
depends_on: [deps]
- name: show config.log on configure failure
pull: if-not-exists
image: fedora:34
volumes:
- name: usrcache
path: /usr
commands:
- if [ -f /usr/src/nDPI/config.log ]; then cat /usr/src/nDPI/config.log; fi
when:
status: [failure]
depends_on: [build-install-nDPI]
- name: apply-patch
pull: if-not-exists
image: fedora:34
@ -192,3 +180,4 @@ volumes:
temp: {}
- name: etc
temp: {}
...