Skip to content

Commit 49aaa79

Browse files
committed
Integrate drone.io CI
1 parent 026679d commit 49aaa79

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

.drone.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
kind: pipeline
3+
type: docker
4+
name: sx-ci
5+
6+
clone:
7+
depth: 1
8+
9+
steps:
10+
- name: test
11+
image: golang:1.16
12+
commands:
13+
- apt-get update
14+
- apt-get install -y libpcap-dev
15+
- go test ./... -v -cover
16+
17+
- name: build
18+
image: golang:1.16
19+
commands:
20+
- apt-get update
21+
- apt-get install -y libpcap-dev
22+
- go build -ldflags "-w -s"
23+
24+
trigger:
25+
branch:
26+
- master
27+
event:
28+
- push
29+
- pull_request

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# sx
22

3+
[![Build Status](https://cloud.drone.io/api/badges/v-byte-cpu/sx/status.svg)](https://cloud.drone.io/v-byte-cpu/sx)
4+
35
The goal of this project is to create the fastest network scanner with clean and simple code.
46

57
Right now, only ARP scan is supported.

0 commit comments

Comments
 (0)