File tree Expand file tree Collapse file tree 2 files changed +44
-29
lines changed Expand file tree Collapse file tree 2 files changed +44
-29
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Go
2+
3+ on :
4+ push :
5+ branches : [ "master" ]
6+ pull_request :
7+ branches : [ "master" ]
8+
9+ jobs :
10+
11+ sources :
12+ runs-on : ubuntu-latest
13+ steps :
14+ - uses : actions/checkout@v3
15+
16+ - name : Set up Go
17+ uses : actions/setup-go@v4
18+ with :
19+ go-version : ' 1.21'
20+ cache-dependency-path : go.sum
21+
22+ install-dependencies :
23+ runs-on : ubuntu-latest
24+ needs : sources
25+ steps :
26+ - name : Install pcap
27+ run : sudo apt-get install -y libpcap0.8-dev
28+
29+ build :
30+ runs-on : ubuntu-latest
31+ needs : install-dependencies
32+ steps :
33+ - name : Build graffiti
34+ run : cd graffiti && go build -v
35+
36+ - name : Build
37+ run : go build -v
38+
39+ run :
40+ runs-on : ubuntu-latest
41+ needs : build
42+ steps :
43+ - name : Show version
44+ run : ./skydive version
You can’t perform that action at this time.
0 commit comments