Skip to content

Commit

Permalink
Merge 32b2314 into ef76e0d
Browse files Browse the repository at this point in the history
  • Loading branch information
b5710546232 committed Oct 5, 2021
2 parents ef76e0d + 32b2314 commit 42f2e60
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/all.yml
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16.x
go-version: 1.17.x
- name: Check dependencies
run: |
go version
Expand All @@ -52,7 +52,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16.x
go-version: 1.17.x
- name: Install golangci-lint
working-directory: /tmp
run: go install "github.com/golangci/golangci-lint/cmd/golangci-lint@v$GOLANG_CI_VERSION"
Expand All @@ -66,10 +66,9 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.15.x]
go-version: [1.16.x]
platform: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
if: github.ref == 'skipped' #TODO: re-enable this when Go 1.17 comes out?
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand All @@ -86,8 +85,8 @@ jobs:
# Run with less concurrency on Windows to minimize flakiness.
if [[ "${{ matrix.platform }}" == windows* ]]; then
unset args[2]
#args[1]="1"
# export GOMAXPROCS=1
args[1]="1"
export GOMAXPROCS=1
fi
go test "${args[@]}" -timeout 800s ./...
Expand Down Expand Up @@ -122,7 +121,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.16.x]
go-version: [1.17.x]
platform: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
Expand Down Expand Up @@ -196,7 +195,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16.x
go-version: 1.17.x
- name: Install package builders
env:
GO111MODULE: 'off'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tc39.yml
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16.x
go-version: 1.17.x
- name: Run tests
run: |
set -x
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,4 +1,4 @@
FROM golang:1.16-alpine as builder
FROM golang:1.17-alpine as builder
WORKDIR $GOPATH/src/go.k6.io/k6
ADD . .
RUN apk --no-cache add git
Expand Down

0 comments on commit 42f2e60

Please sign in to comment.