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 \ libvpx-dev \
libx264-dev libx264-dev
- name: go vet - name: go vet
run: go vet ./... run: go vet -tags nolibopusfile ./...
- name: go build - name: go build
run: go build ./... run: go build -tags nolibopusfile ./...
- name: go build without CGO - name: go build without CGO
run: go build . pkg/... run: go build . pkg/...
env: env:
CGO_ENABLED: 0 CGO_ENABLED: 0
- name: go test - name: go test
run: go test ./... -v -race run: go test -tags nolibopusfile ./... -v -race
- name: go test without CGO - name: go test without CGO
run: go test . pkg/... -v run: go test . pkg/... -v
env: env: