Skip to content
Merged
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
3 changes: 0 additions & 3 deletions .github/workflows/generate.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@
driver = "snowflake"
private = false

[lang.go.build]
additional-make-args = ["BUILD_TAGS=minicore_disabled"]

[[lang.go.validation.configs]]
environment = "Snowflake CI"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ jobs:
source .env.test
fi
set +a
pixi run adbc-make build DEBUG=true VERBOSE=true BUILD_TAGS=minicore_disabled
pixi run adbc-make build DEBUG=true VERBOSE=true
- name: Start Test Dependencies
# Can't use Docker on macOS AArch64 runners, and Windows containers
# work but often the container doesn't support Windows
Expand Down Expand Up @@ -365,7 +365,7 @@ jobs:
source .env.release
fi
set +a
pixi run adbc-make check CI=true VERBOSE=true BUILD_TAGS=minicore_disabled RELEASE=true
pixi run adbc-make check CI=true VERBOSE=true RELEASE=true
if [[ -f ci/scripts/post-build.sh ]]; then
./ci/scripts/post-build.sh release ${{ matrix.platform }} ${{ matrix.arch }}
fi
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ jobs:
source .env.test
fi
set +a
pixi run adbc-make build DEBUG=true VERBOSE=true BUILD_TAGS=minicore_disabled
pixi run adbc-make build DEBUG=true VERBOSE=true
- name: Start Test Dependencies
# Can't use Docker on macOS AArch64 runners, and Windows containers
# work but often the container doesn't support Windows
Expand Down Expand Up @@ -429,7 +429,7 @@ jobs:
source .env.release
fi
set +a
pixi run adbc-make check CI=true VERBOSE=true BUILD_TAGS=minicore_disabled
pixi run adbc-make check CI=true VERBOSE=true
if [[ -f ci/scripts/post-build.sh ]]; then
./ci/scripts/post-build.sh release ${{ matrix.platform }} ${{ matrix.arch }}
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go_test_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
INPUTS: ${{ toJSON(inputs) }}
MESSAGE: ${{ steps.get_run.outputs.message }}
REPOSITORY: ${{ needs.setup.outputs.repository }}
WORKFLOW_RUN_URL: ${{ needs.setup.outputs.workflow_run_url }}
WORKFLOW_RUN_URL: ${{ steps.get_run.outputs.workflow_run_url }}
with:
github-token: ${{ github.token }}
script: |
Expand Down
1 change: 1 addition & 0 deletions go/adbc-make.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ driver = "snowflake"

[lang]
lang = "go"
build-tags = ["minicore_disabled"]
Loading