mirror of
https://github.com/googleapis/genai-toolbox.git
synced 2026-01-29 09:18:12 -05:00
Compare commits
6 Commits
processing
...
fix-ci
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b2cbb4098b | ||
|
|
4c177198c9 | ||
|
|
618ae82176 | ||
|
|
9b11a59519 | ||
|
|
f4219dc00a | ||
|
|
10f79b7a97 |
@@ -14,116 +14,117 @@
|
|||||||
steps:
|
steps:
|
||||||
- id: "build-docker"
|
- id: "build-docker"
|
||||||
name: "gcr.io/cloud-builders/docker"
|
name: "gcr.io/cloud-builders/docker"
|
||||||
waitFor: ['-']
|
waitFor: ["-"]
|
||||||
script: |
|
script: |
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
docker buildx create --name container-builder --driver docker-container --bootstrap --use
|
docker buildx create --name container-builder --driver docker-container --bootstrap --use
|
||||||
docker buildx build --platform linux/amd64,linux/arm64 --build-arg COMMIT_SHA=$(git rev-parse HEAD) -t ${_DOCKER_URI}:$REF_NAME --push .
|
docker buildx build --platform linux/amd64,linux/arm64 --build-arg COMMIT_SHA=$(git rev-parse HEAD) -t ${_DOCKER_URI}:$REF_NAME --push .
|
||||||
|
|
||||||
- id: "install-dependencies"
|
- id: "install-dependencies"
|
||||||
name: golang:1
|
name: golang:1-bookworm
|
||||||
waitFor: ['-']
|
waitFor: ["-"]
|
||||||
env:
|
env:
|
||||||
- 'GOPATH=/gopath'
|
- "GOPATH=/gopath"
|
||||||
volumes:
|
volumes:
|
||||||
- name: 'go'
|
- name: "go"
|
||||||
path: '/gopath'
|
path: "/gopath"
|
||||||
script: |
|
script: |
|
||||||
go get -d ./...
|
apt-get install -y clang
|
||||||
|
go get -d ./...
|
||||||
|
|
||||||
- id: "build-linux-amd64"
|
- id: "build-linux-amd64"
|
||||||
name: golang:1
|
name: golang:1-bookworm
|
||||||
waitFor:
|
waitFor:
|
||||||
- "install-dependencies"
|
- "install-dependencies"
|
||||||
env:
|
env:
|
||||||
- 'GOPATH=/gopath'
|
- "GOPATH=/gopath"
|
||||||
volumes:
|
volumes:
|
||||||
- name: 'go'
|
- name: "go"
|
||||||
path: '/gopath'
|
path: "/gopath"
|
||||||
script: |
|
script: |
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 \
|
CGO_ENABLED=1 GOOS=linux GOARCH=amd64 \
|
||||||
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse HEAD)" -o toolbox.linux.amd64
|
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse HEAD)" -o toolbox.linux.amd64
|
||||||
|
|
||||||
- id: "store-linux-amd64"
|
- id: "store-linux-amd64"
|
||||||
name: "gcr.io/cloud-builders/gcloud:latest"
|
name: "gcr.io/cloud-builders/gcloud:latest"
|
||||||
waitFor:
|
waitFor:
|
||||||
- "build-linux-amd64"
|
- "build-linux-amd64"
|
||||||
script: |
|
script: |
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
gcloud storage cp toolbox.linux.amd64 gs://$_BUCKET_NAME/$REF_NAME/linux/amd64/toolbox
|
gcloud storage cp toolbox.linux.amd64 gs://$_BUCKET_NAME/$REF_NAME/linux/amd64/toolbox
|
||||||
|
|
||||||
- id: "build-darwin-arm64"
|
- id: "build-darwin-arm64"
|
||||||
name: golang:1
|
name: golang:1-bookworm
|
||||||
waitFor:
|
waitFor:
|
||||||
- "install-dependencies"
|
- "install-dependencies"
|
||||||
env:
|
env:
|
||||||
- 'GOPATH=/gopath'
|
- "GOPATH=/gopath"
|
||||||
volumes:
|
volumes:
|
||||||
- name: 'go'
|
- name: "go"
|
||||||
path: '/gopath'
|
path: "/gopath"
|
||||||
script: |
|
script: |
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 \
|
CGO_ENABLED=1 GOOS=darwin GOARCH=arm64 \
|
||||||
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse HEAD)" -o toolbox.darwin.arm64
|
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse HEAD)" -o toolbox.darwin.arm64
|
||||||
|
|
||||||
- id: "store-darwin-arm64"
|
- id: "store-darwin-arm64"
|
||||||
name: "gcr.io/cloud-builders/gcloud:latest"
|
name: "gcr.io/cloud-builders/gcloud:latest"
|
||||||
waitFor:
|
waitFor:
|
||||||
- "build-darwin-arm64"
|
- "build-darwin-arm64"
|
||||||
script: |
|
script: |
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
gcloud storage cp toolbox.darwin.arm64 gs://$_BUCKET_NAME/$REF_NAME/darwin/arm64/toolbox
|
gcloud storage cp toolbox.darwin.arm64 gs://$_BUCKET_NAME/$REF_NAME/darwin/arm64/toolbox
|
||||||
|
|
||||||
- id: "build-darwin-amd64"
|
- id: "build-darwin-amd64"
|
||||||
name: golang:1
|
name: golang:1-bookworm
|
||||||
waitFor:
|
waitFor:
|
||||||
- "install-dependencies"
|
- "install-dependencies"
|
||||||
env:
|
env:
|
||||||
- 'GOPATH=/gopath'
|
- "GOPATH=/gopath"
|
||||||
volumes:
|
volumes:
|
||||||
- name: 'go'
|
- name: "go"
|
||||||
path: '/gopath'
|
path: "/gopath"
|
||||||
script: |
|
script: |
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 \
|
CGO_ENABLED=1 GOOS=darwin GOARCH=amd64 \
|
||||||
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse HEAD)" -o toolbox.darwin.amd64
|
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse HEAD)" -o toolbox.darwin.amd64
|
||||||
|
|
||||||
- id: "store-darwin-amd64"
|
- id: "store-darwin-amd64"
|
||||||
name: "gcr.io/cloud-builders/gcloud:latest"
|
name: "gcr.io/cloud-builders/gcloud:latest"
|
||||||
waitFor:
|
waitFor:
|
||||||
- "build-darwin-amd64"
|
- "build-darwin-amd64"
|
||||||
script: |
|
script: |
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
gcloud storage cp toolbox.darwin.amd64 gs://$_BUCKET_NAME/$REF_NAME/darwin/amd64/toolbox
|
gcloud storage cp toolbox.darwin.amd64 gs://$_BUCKET_NAME/$REF_NAME/darwin/amd64/toolbox
|
||||||
|
|
||||||
- id: "build-windows-amd64"
|
- id: "build-windows-amd64"
|
||||||
name: golang:1
|
name: golang:1-bookworm
|
||||||
waitFor:
|
waitFor:
|
||||||
- "install-dependencies"
|
- "install-dependencies"
|
||||||
env:
|
env:
|
||||||
- 'GOPATH=/gopath'
|
- "GOPATH=/gopath"
|
||||||
volumes:
|
volumes:
|
||||||
- name: 'go'
|
- name: "go"
|
||||||
path: '/gopath'
|
path: "/gopath"
|
||||||
script: |
|
script: |
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 \
|
CGO_ENABLED=1 GOOS=windows GOARCH=amd64 \
|
||||||
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse HEAD)" -o toolbox.windows.amd64
|
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse HEAD)" -o toolbox.windows.amd64
|
||||||
|
|
||||||
- id: "store-windows-amd64"
|
- id: "store-windows-amd64"
|
||||||
name: "gcr.io/cloud-builders/gcloud:latest"
|
name: "gcr.io/cloud-builders/gcloud:latest"
|
||||||
waitFor:
|
waitFor:
|
||||||
- "build-windows-amd64"
|
- "build-windows-amd64"
|
||||||
script: |
|
script: |
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
gcloud storage cp toolbox.windows.amd64 gs://$_BUCKET_NAME/$REF_NAME/windows/amd64/toolbox.exe
|
gcloud storage cp toolbox.windows.amd64 gs://$_BUCKET_NAME/$REF_NAME/windows/amd64/toolbox.exe
|
||||||
|
|
||||||
options:
|
options:
|
||||||
automapSubstitutions: true
|
automapSubstitutions: true
|
||||||
dynamicSubstitutions: true
|
dynamicSubstitutions: true
|
||||||
logging: CLOUD_LOGGING_ONLY # Necessary for custom service account
|
logging: CLOUD_LOGGING_ONLY # Necessary for custom service account
|
||||||
machineType: 'E2_HIGHCPU_32'
|
machineType: "E2_HIGHCPU_32"
|
||||||
|
|
||||||
substitutions:
|
substitutions:
|
||||||
_REGION: us-central1
|
_REGION: us-central1
|
||||||
|
|||||||
@@ -14,130 +14,130 @@
|
|||||||
steps:
|
steps:
|
||||||
- id: "build-docker"
|
- id: "build-docker"
|
||||||
name: "gcr.io/cloud-builders/docker"
|
name: "gcr.io/cloud-builders/docker"
|
||||||
waitFor: ['-']
|
waitFor: ["-"]
|
||||||
script: |
|
script: |
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
export VERSION=$(cat ./cmd/version.txt)
|
export VERSION=$(cat ./cmd/version.txt)
|
||||||
docker buildx create --name container-builder --driver docker-container --bootstrap --use
|
docker buildx create --name container-builder --driver docker-container --bootstrap --use
|
||||||
|
|
||||||
export TAGS="-t ${_DOCKER_URI}:$VERSION"
|
export TAGS="-t ${_DOCKER_URI}:$VERSION"
|
||||||
if [[ $_PUSH_LATEST == 'true' ]]; then
|
if [[ $_PUSH_LATEST == 'true' ]]; then
|
||||||
export TAGS="$TAGS -t ${_DOCKER_URI}:latest"
|
export TAGS="$TAGS -t ${_DOCKER_URI}:latest"
|
||||||
fi
|
fi
|
||||||
docker buildx build --platform linux/amd64,linux/arm64 --build-arg BUILD_TYPE=container.release --build-arg COMMIT_SHA=$(git rev-parse HEAD) $TAGS --push .
|
docker buildx build --platform linux/amd64,linux/arm64 --build-arg BUILD_TYPE=container.release --build-arg COMMIT_SHA=$(git rev-parse HEAD) $TAGS --push .
|
||||||
|
|
||||||
- id: "install-dependencies"
|
- id: "install-dependencies"
|
||||||
name: golang:1
|
name: golang:1
|
||||||
waitFor: ['-']
|
waitFor: ["-"]
|
||||||
env:
|
env:
|
||||||
- 'GOPATH=/gopath'
|
- "GOPATH=/gopath"
|
||||||
volumes:
|
volumes:
|
||||||
- name: 'go'
|
- name: "go"
|
||||||
path: '/gopath'
|
path: "/gopath"
|
||||||
script: |
|
script: |
|
||||||
go get -d ./...
|
go get -d ./...
|
||||||
|
|
||||||
- id: "build-linux-amd64"
|
- id: "build-linux-amd64"
|
||||||
name: golang:1
|
name: golang:1
|
||||||
waitFor:
|
waitFor:
|
||||||
- "install-dependencies"
|
- "install-dependencies"
|
||||||
env:
|
env:
|
||||||
- 'GOPATH=/gopath'
|
- "GOPATH=/gopath"
|
||||||
volumes:
|
volumes:
|
||||||
- name: 'go'
|
- name: "go"
|
||||||
path: '/gopath'
|
path: "/gopath"
|
||||||
script: |
|
script: |
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
export VERSION=$(cat ./cmd/version.txt)
|
export VERSION=$(cat ./cmd/version.txt)
|
||||||
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 \
|
CGO_ENABLED=1 GOOS=linux GOARCH=amd64 \
|
||||||
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.buildType=binary -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse HEAD)" -o toolbox.linux.amd64
|
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.buildType=binary -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse HEAD)" -o toolbox.linux.amd64
|
||||||
|
|
||||||
- id: "store-linux-amd64"
|
- id: "store-linux-amd64"
|
||||||
name: "gcr.io/cloud-builders/gcloud:latest"
|
name: "gcr.io/cloud-builders/gcloud:latest"
|
||||||
waitFor:
|
waitFor:
|
||||||
- "build-linux-amd64"
|
- "build-linux-amd64"
|
||||||
script: |
|
script: |
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
export VERSION=v$(cat ./cmd/version.txt)
|
export VERSION=v$(cat ./cmd/version.txt)
|
||||||
gcloud storage cp toolbox.linux.amd64 gs://$_BUCKET_NAME/$VERSION/linux/amd64/toolbox
|
gcloud storage cp toolbox.linux.amd64 gs://$_BUCKET_NAME/$VERSION/linux/amd64/toolbox
|
||||||
|
|
||||||
- id: "build-darwin-arm64"
|
- id: "build-darwin-arm64"
|
||||||
name: golang:1
|
name: golang:1
|
||||||
waitFor:
|
waitFor:
|
||||||
- "install-dependencies"
|
- "install-dependencies"
|
||||||
env:
|
env:
|
||||||
- 'GOPATH=/gopath'
|
- "GOPATH=/gopath"
|
||||||
volumes:
|
volumes:
|
||||||
- name: 'go'
|
- name: "go"
|
||||||
path: '/gopath'
|
path: "/gopath"
|
||||||
script: |
|
script: |
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
export VERSION=$(cat ./cmd/version.txt)
|
export VERSION=$(cat ./cmd/version.txt)
|
||||||
CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 \
|
CGO_ENABLED=1 GOOS=darwin GOARCH=arm64 \
|
||||||
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.buildType=binary -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse HEAD)" -o toolbox.darwin.arm64
|
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.buildType=binary -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse HEAD)" -o toolbox.darwin.arm64
|
||||||
|
|
||||||
- id: "store-darwin-arm64"
|
- id: "store-darwin-arm64"
|
||||||
name: "gcr.io/cloud-builders/gcloud:latest"
|
name: "gcr.io/cloud-builders/gcloud:latest"
|
||||||
waitFor:
|
waitFor:
|
||||||
- "build-darwin-arm64"
|
- "build-darwin-arm64"
|
||||||
script: |
|
script: |
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
export VERSION=v$(cat ./cmd/version.txt)
|
export VERSION=v$(cat ./cmd/version.txt)
|
||||||
gcloud storage cp toolbox.darwin.arm64 gs://$_BUCKET_NAME/$VERSION/darwin/arm64/toolbox
|
gcloud storage cp toolbox.darwin.arm64 gs://$_BUCKET_NAME/$VERSION/darwin/arm64/toolbox
|
||||||
|
|
||||||
- id: "build-darwin-amd64"
|
- id: "build-darwin-amd64"
|
||||||
name: golang:1
|
name: golang:1
|
||||||
waitFor:
|
waitFor:
|
||||||
- "install-dependencies"
|
- "install-dependencies"
|
||||||
env:
|
env:
|
||||||
- 'GOPATH=/gopath'
|
- "GOPATH=/gopath"
|
||||||
volumes:
|
volumes:
|
||||||
- name: 'go'
|
- name: "go"
|
||||||
path: '/gopath'
|
path: "/gopath"
|
||||||
script: |
|
script: |
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
export VERSION=$(cat ./cmd/version.txt)
|
export VERSION=$(cat ./cmd/version.txt)
|
||||||
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 \
|
CGO_ENABLED=1 GOOS=darwin GOARCH=amd64 \
|
||||||
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.buildType=binary -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse HEAD)" -o toolbox.darwin.amd64
|
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.buildType=binary -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse HEAD)" -o toolbox.darwin.amd64
|
||||||
|
|
||||||
- id: "store-darwin-amd64"
|
- id: "store-darwin-amd64"
|
||||||
name: "gcr.io/cloud-builders/gcloud:latest"
|
name: "gcr.io/cloud-builders/gcloud:latest"
|
||||||
waitFor:
|
waitFor:
|
||||||
- "build-darwin-amd64"
|
- "build-darwin-amd64"
|
||||||
script: |
|
script: |
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
export VERSION=v$(cat ./cmd/version.txt)
|
export VERSION=v$(cat ./cmd/version.txt)
|
||||||
gcloud storage cp toolbox.darwin.amd64 gs://$_BUCKET_NAME/$VERSION/darwin/amd64/toolbox
|
gcloud storage cp toolbox.darwin.amd64 gs://$_BUCKET_NAME/$VERSION/darwin/amd64/toolbox
|
||||||
|
|
||||||
- id: "build-windows-amd64"
|
- id: "build-windows-amd64"
|
||||||
name: golang:1
|
name: golang:1
|
||||||
waitFor:
|
waitFor:
|
||||||
- "install-dependencies"
|
- "install-dependencies"
|
||||||
env:
|
env:
|
||||||
- 'GOPATH=/gopath'
|
- "GOPATH=/gopath"
|
||||||
volumes:
|
volumes:
|
||||||
- name: 'go'
|
- name: "go"
|
||||||
path: '/gopath'
|
path: "/gopath"
|
||||||
script: |
|
script: |
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
export VERSION=$(cat ./cmd/version.txt)
|
export VERSION=$(cat ./cmd/version.txt)
|
||||||
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 \
|
CGO_ENABLED=1 GOOS=windows GOARCH=amd64 \
|
||||||
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.buildType=binary -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse HEAD)" -o toolbox.windows.amd64
|
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.buildType=binary -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse HEAD)" -o toolbox.windows.amd64
|
||||||
|
|
||||||
- id: "store-windows-amd64"
|
- id: "store-windows-amd64"
|
||||||
name: "gcr.io/cloud-builders/gcloud:latest"
|
name: "gcr.io/cloud-builders/gcloud:latest"
|
||||||
waitFor:
|
waitFor:
|
||||||
- "build-windows-amd64"
|
- "build-windows-amd64"
|
||||||
script: |
|
script: |
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
export VERSION=v$(cat ./cmd/version.txt)
|
export VERSION=v$(cat ./cmd/version.txt)
|
||||||
gcloud storage cp toolbox.windows.amd64 gs://$_BUCKET_NAME/$VERSION/windows/amd64/toolbox.exe
|
gcloud storage cp toolbox.windows.amd64 gs://$_BUCKET_NAME/$VERSION/windows/amd64/toolbox.exe
|
||||||
|
|
||||||
options:
|
options:
|
||||||
automapSubstitutions: true
|
automapSubstitutions: true
|
||||||
dynamicSubstitutions: true
|
dynamicSubstitutions: true
|
||||||
logging: CLOUD_LOGGING_ONLY # Necessary for custom service account
|
logging: CLOUD_LOGGING_ONLY # Necessary for custom service account
|
||||||
machineType: 'E2_HIGHCPU_32'
|
machineType: "E2_HIGHCPU_32"
|
||||||
|
|
||||||
substitutions:
|
substitutions:
|
||||||
_REGION: us-central1
|
_REGION: us-central1
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
# Use the latest stable golang 1.x to compile to a binary
|
# Use the latest stable golang 1.x to compile to a binary
|
||||||
FROM --platform=$BUILDPLATFORM golang:1 AS build
|
FROM --platform=$BUILDPLATFORM golang:1-bookworm AS build
|
||||||
|
|
||||||
WORKDIR /go/src/genai-toolbox
|
WORKDIR /go/src/genai-toolbox
|
||||||
COPY . .
|
COPY . .
|
||||||
@@ -23,8 +23,11 @@ ARG TARGETARCH
|
|||||||
ARG BUILD_TYPE="container.dev"
|
ARG BUILD_TYPE="container.dev"
|
||||||
ARG COMMIT_SHA=""
|
ARG COMMIT_SHA=""
|
||||||
|
|
||||||
|
RUN apt-get update && \
|
||||||
|
apt install -y clang && \
|
||||||
|
rm -rf /var/lib/apt/lists/*
|
||||||
RUN go get ./...
|
RUN go get ./...
|
||||||
RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} \
|
RUN CGO_ENABLED=1 GOOS=${TARGETOS} GOARCH=${TARGETARCH} \
|
||||||
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.buildType=container.${BUILD_TYPE} -X github.com/googleapis/genai-toolbox/cmd.commitSha=${COMMIT_SHA}"
|
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.buildType=container.${BUILD_TYPE} -X github.com/googleapis/genai-toolbox/cmd.commitSha=${COMMIT_SHA}"
|
||||||
|
|
||||||
# Final Stage
|
# Final Stage
|
||||||
|
|||||||
Reference in New Issue
Block a user