mirror of
https://github.com/rwinkhart/go-winio.git
synced 2026-09-06 00:57:19 -04:00
Merge pull request #208 from dcantah/build-bins-ci
Build the three binaries in this repo from the ci
This commit is contained in:
@@ -1,12 +1,24 @@
|
|||||||
name: CI
|
name: CI
|
||||||
on:
|
on:
|
||||||
- push
|
- push
|
||||||
- pull_request
|
- pull_request
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: 'windows-2019'
|
runs-on: 'windows-2019'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-go@v2
|
- uses: actions/setup-go@v2
|
||||||
- run: go test -gcflags=all=-d=checkptr -v ./...
|
- run: go test -gcflags=all=-d=checkptr -v ./...
|
||||||
|
|
||||||
|
build:
|
||||||
|
runs-on: 'windows-2019'
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/setup-go@v2
|
||||||
|
with:
|
||||||
|
go-version: '^1.15.0'
|
||||||
|
|
||||||
|
- run: go build ./pkg/etw/sample/
|
||||||
|
- run: go build ./tools/etw-provider-gen/
|
||||||
|
- run: go build ./wim/validate/
|
||||||
Reference in New Issue
Block a user