use nolibopus in ci

This commit is contained in:
Tarrence van As
2020-09-29 13:55:08 +00:00
committed by Lukas Herman
parent a3d374f528
commit f3e3dc9589

View File

@@ -30,15 +30,15 @@ jobs:
libvpx-dev \
libx264-dev
- name: go vet
run: go vet ./...
run: go vet -tags nolibopusfile ./...
- name: go build
run: go build ./...
run: go build -tags nolibopusfile ./...
- name: go build without CGO
run: go build . pkg/...
env:
CGO_ENABLED: 0
- name: go test
run: go test ./... -v -race
run: go test -tags nolibopusfile ./... -v -race
- name: go test without CGO
run: go test . pkg/... -v
env: