Skip to content

Commit

Permalink
attempt to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
wpjunior committed Aug 29, 2024
1 parent 08f720f commit f1b0f40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
{ ip address | grep -q 169.196.255.254; } || sudo ip address add 169.196.255.254 dev lo
- name: Running required services (Builkit, Docker Registry, Docker)
run: docker-compose -f ./compose.yaml up -d
run: docker compose -f ./compose.yaml up -d

- name: Install protoc and Go compiler plugins
run: |-
Expand Down
2 changes: 1 addition & 1 deletion pkg/build/buildkit/scaler/upscaler.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func MayUpscale(ctx context.Context, cs kubernetes.Interface, ns, statefulset st
if err != nil {
return err
}
wantedReplicas = int32(replicas)
wantedReplicas = int32(replicas) //nolint
}

fmt.Fprintln(w, "There is no buildkits available, scaling to one replica")
Expand Down

0 comments on commit f1b0f40

Please sign in to comment.