Skip to content

Commit 0db3e47

Browse files
authored
chore(go): update adbc-make.toml/generate.toml (#186)
1 parent 2f5a406 commit 0db3e47

5 files changed

Lines changed: 6 additions & 8 deletions

File tree

.github/workflows/generate.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@
1515
driver = "snowflake"
1616
private = false
1717

18-
[lang.go.build]
19-
additional-make-args = ["BUILD_TAGS=minicore_disabled"]
20-
2118
[[lang.go.validation.configs]]
2219
environment = "Snowflake CI"
2320

.github/workflows/go_release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ jobs:
214214
source .env.test
215215
fi
216216
set +a
217-
pixi run adbc-make build DEBUG=true VERBOSE=true BUILD_TAGS=minicore_disabled
217+
pixi run adbc-make build DEBUG=true VERBOSE=true
218218
- name: Start Test Dependencies
219219
# Can't use Docker on macOS AArch64 runners, and Windows containers
220220
# work but often the container doesn't support Windows
@@ -365,7 +365,7 @@ jobs:
365365
source .env.release
366366
fi
367367
set +a
368-
pixi run adbc-make check CI=true VERBOSE=true BUILD_TAGS=minicore_disabled RELEASE=true
368+
pixi run adbc-make check CI=true VERBOSE=true RELEASE=true
369369
if [[ -f ci/scripts/post-build.sh ]]; then
370370
./ci/scripts/post-build.sh release ${{ matrix.platform }} ${{ matrix.arch }}
371371
fi

.github/workflows/go_test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ jobs:
267267
source .env.test
268268
fi
269269
set +a
270-
pixi run adbc-make build DEBUG=true VERBOSE=true BUILD_TAGS=minicore_disabled
270+
pixi run adbc-make build DEBUG=true VERBOSE=true
271271
- name: Start Test Dependencies
272272
# Can't use Docker on macOS AArch64 runners, and Windows containers
273273
# work but often the container doesn't support Windows
@@ -429,7 +429,7 @@ jobs:
429429
source .env.release
430430
fi
431431
set +a
432-
pixi run adbc-make check CI=true VERBOSE=true BUILD_TAGS=minicore_disabled
432+
pixi run adbc-make check CI=true VERBOSE=true
433433
if [[ -f ci/scripts/post-build.sh ]]; then
434434
./ci/scripts/post-build.sh release ${{ matrix.platform }} ${{ matrix.arch }}
435435
fi

.github/workflows/go_test_pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
INPUTS: ${{ toJSON(inputs) }}
117117
MESSAGE: ${{ steps.get_run.outputs.message }}
118118
REPOSITORY: ${{ needs.setup.outputs.repository }}
119-
WORKFLOW_RUN_URL: ${{ needs.setup.outputs.workflow_run_url }}
119+
WORKFLOW_RUN_URL: ${{ steps.get_run.outputs.workflow_run_url }}
120120
with:
121121
github-token: ${{ github.token }}
122122
script: |

go/adbc-make.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ driver = "snowflake"
1616

1717
[lang]
1818
lang = "go"
19+
build-tags = ["minicore_disabled"]

0 commit comments

Comments
 (0)