forked from Velocidex/velociraptor
-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (60 loc) · 1.71 KB
/
go.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Only trigger when a PR is committed.
name: Linux Build All Arches
on:
pull_request:
types: [closed]
# branches:
# - master
jobs:
build:
if: github.event.pull_request.merged
name: Build
runs-on: ubuntu-18.04
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '^1.17'
- run: go version
- name: Get dependencies
run: |
go get -v -t -d ./...
sudo apt-get install mingw-w64-x86-64-dev gcc-mingw-w64-x86-64 gcc-mingw-w64
- name: Use Node.js v12
uses: actions/setup-node@v1
with:
node-version: 12
- name: Cache node-modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: |
**/node_modules/
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: npm install gui
run: |
cd gui/velociraptor/
npm install
npm run build
cd ../../
- name: Build All Architectures
# Uncomment the architectures you want here. NOTE: DarwinBase
# does not include yara or modules with C compilers needed.
run: |
mkdir ./output/
export PATH=$PATH:~/go/bin/
go run make.go -v Linux
go run make.go -v Windows
go run make.go -v Windowsx86
go run make.go -v DarwinBase
- name: StoreBinaries
uses: actions/upload-artifact@v1
with:
name: Binaries.zip
path: output