File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919 options : --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
2020
2121 steps :
22- - uses : actions/checkout@master
22+ - uses : actions/checkout@v2
2323 - uses : actions/setup-java@v1
2424 with :
2525 java-version : 11
Original file line number Diff line number Diff line change @@ -19,18 +19,18 @@ jobs:
1919 options : --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
2020
2121 steps :
22- - uses : actions/checkout@master
22+ - uses : actions/checkout@v2
2323
24- - name : Set up Go 1.13
25- uses : actions/setup-go@v1
24+ - name : Set up Go 1.14
25+ uses : actions/setup-go@v2
2626 with :
27- go-version : ' 1.13 '
27+ go-version : ' 1.14 '
2828
2929 - run : go build ./...
3030 working-directory : internal/endtoend/testdata
3131
3232 - name : Test sqlc
33- run : go test --tags=examples,exp -v ./...
33+ run : go test --tags=examples -v ./...
3434 env :
3535 PG_USER : postgres
3636 PG_HOST : localhost
Original file line number Diff line number Diff line change 1111 name : push kjconroy/sqlc:devel
1212 runs-on : ubuntu-latest
1313 steps :
14- - uses : actions/checkout@master
14+ - uses : actions/checkout@v2
1515 - uses : docker/build-push-action@v1
1616 with :
1717 username : kjconroy
Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ jobs:
1313 name : release --platforms darwin
1414 runs-on : macos-latest
1515 steps :
16- - uses : actions/checkout@master
17- - name : Set up Go 1.13
18- uses : actions/setup-go@v1
16+ - uses : actions/checkout@v2
17+ - name : Set up Go 1.14
18+ uses : actions/setup-go@v2
1919 with :
20- go-version : ' 1.13 '
20+ go-version : ' 1.14 '
2121 - run : brew install eqnxio/equinox/release-tool
2222 - name : equinox release
2323 env :
@@ -30,11 +30,11 @@ jobs:
3030 runs-on : ubuntu-latest
3131 needs : [macos]
3232 steps :
33- - uses : actions/checkout@master
34- - name : Set up Go 1.13
35- uses : actions/setup-go@v1
33+ - uses : actions/checkout@v2
34+ - name : Set up Go 1.14
35+ uses : actions/setup-go@v2
3636 with :
37- go-version : ' 1.13 '
37+ go-version : ' 1.14 '
3838 - run : curl -O https://bin.equinox.io/c/mBWdkfai63v/release-tool-stable-linux-amd64.tgz
3939 - run : tar -xzvf release-tool-stable-linux-amd64.tgz
4040 - name : equinox release
Original file line number Diff line number Diff line change 11build :
2- go build --tags=exp ./...
2+ go build ./...
33
44test :
5- go test --tags=exp ./...
5+ go test ./...
66
77exp :
8- SQLC_EXPERIMENTAL_PARSER=on go test --tags=exp ./...
8+ SQLC_EXPERIMENTAL_PARSER=on go test ./...
99
1010sqlc-dev :
11- go build -o ~ /bin/sqlc-dev --tags=exp ./cmd/sqlc/
11+ go build -o ~ /bin/sqlc-dev ./cmd/sqlc/
1212
1313regen : sqlc-dev
1414 ./scripts/regenerate.sh
Original file line number Diff line number Diff line change 11module github.com/kyleconroy/sqlc
22
3- go 1.13
3+ go 1.14
44
55require (
66 github.com/antlr/antlr4 v0.0.0-20200209180723-1177c0b58d07
Original file line number Diff line number Diff line change 1- // +build exp
2-
31package compiler
42
53import (
Original file line number Diff line number Diff line change 1- // +build exp
2-
31package compiler
42
53import (
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- // +build exp
2-
31package runtime
42
53import (
You can’t perform that action at this time.
0 commit comments