Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: update to go version 1.17 #47

Open
wants to merge 2 commits into
base: v2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
strategy:
matrix:
go-version:
- 1.14.x
- 1.17.x
platform:
# Would like to test mac & win but not sure how to install opus on
# those in GH actions, yet.
Expand All @@ -32,10 +32,10 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.14.x
go-version: 1.17.x
- name: Install system dependencies
run: sudo apt-get install pkg-config libopus-dev
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -tags nolibopusfile -race -v ./...
run: go test -tags nolibopusfile -race -v ./...
1 change: 1 addition & 0 deletions stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
//
// License for use of this code is detailed in the LICENSE file

//go:build !nolibopusfile
// +build !nolibopusfile

package opus
Expand Down
1 change: 1 addition & 0 deletions stream_errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
//
// License for use of this code is detailed in the LICENSE file

//go:build !nolibopusfile
// +build !nolibopusfile

package opus
Expand Down
1 change: 1 addition & 0 deletions stream_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
//
// License for use of this code is detailed in the LICENSE file

//go:build !nolibopusfile
// +build !nolibopusfile

package opus
Expand Down
1 change: 1 addition & 0 deletions streams_map.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
//
// License for use of this code is detailed in the LICENSE file

//go:build !nolibopusfile
// +build !nolibopusfile

package opus
Expand Down