Skip to content

Commit 1358edb

Browse files
committed
Build the three binaries in this repo from the ci
Even though this repo is normally used as a dependency, there are some sample binaries and tools built out of here. This just makes sure they still build in the CI. Signed-off-by: Daniel Canter <[email protected]>
1 parent 4ee6e51 commit 1358edb

1 file changed

Lines changed: 14 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,24 @@
1-
name: CI
1+
name: CI
22
on:
33
- push
44
- pull_request
55

6-
jobs:
6+
jobs:
77
test:
88
runs-on: 'windows-2019'
99
steps:
1010
- uses: actions/checkout@v2
1111
- uses: actions/setup-go@v2
1212
- run: go test -gcflags=all=-d=checkptr -v ./...
13+
14+
build:
15+
runs-on: 'windows-2019'
16+
steps:
17+
- uses: actions/checkout@v2
18+
- uses: actions/setup-go@v2
19+
with:
20+
go-version: '^1.15.0'
21+
22+
- run: go build ./pkg/etw/sample/
23+
- run: go build ./tools/etw-provider-gen/
24+
- run: go build ./wim/validate/

0 commit comments

Comments
 (0)