Skip to content

Commit 326120c

Browse files
authored
all: Remove the exp build tag (#507)
1 parent c8e84be commit 326120c

File tree

10 files changed

+20
-39
lines changed

10 files changed

+20
-39
lines changed

.github/workflows/ci-kotlin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ 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
- uses: actions/setup-java@v1
2424
with:
2525
java-version: 11

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
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

.github/workflows/equinox.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff 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

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
build:
2-
go build --tags=exp ./...
2+
go build ./...
33

44
test:
5-
go test --tags=exp ./...
5+
go test ./...
66

77
exp:
8-
SQLC_EXPERIMENTAL_PARSER=on go test --tags=exp ./...
8+
SQLC_EXPERIMENTAL_PARSER=on go test ./...
99

1010
sqlc-dev:
11-
go build -o ~/bin/sqlc-dev --tags=exp ./cmd/sqlc/
11+
go build -o ~/bin/sqlc-dev ./cmd/sqlc/
1212

1313
regen: sqlc-dev
1414
./scripts/regenerate.sh

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/kyleconroy/sqlc
22

3-
go 1.13
3+
go 1.14
44

55
require (
66
github.com/antlr/antlr4 v0.0.0-20200209180723-1177c0b58d07

internal/compiler/compile.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// +build exp
2-
31
package compiler
42

53
import (

internal/compiler/engine.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// +build exp
2-
31
package compiler
42

53
import (

internal/compiler/noop.go

Lines changed: 0 additions & 13 deletions
This file was deleted.

internal/compiler/runtime/parse.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// +build exp
2-
31
package runtime
42

53
import (

0 commit comments

Comments
 (0)