mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
* Prototype IDP provider * [gp cli] Add IDP commands * [public-api] Remove zitadel based IDP implementation * [gitpod-cli] Add IDP support for Vault * [idp] Remove per-org IDP * [idp] Add key cache and random key IDs * [idp] Defer GetIDToken authorisation to server * [idp] Add Redis public key cache * [gitpod-cli] Hide IDP commands * [idp] Add key ID to JWT * [idp] Add unit tests * [idp] Adress review comments * [public-api-server] Use logging middleware globally * [public-api-server] Simplify service registration * [idp] Add Redis outage resilience
20 lines
553 B
YAML
20 lines
553 B
YAML
packages:
|
|
- name: app
|
|
type: go
|
|
srcs:
|
|
- "**/*.go"
|
|
- "go.mod"
|
|
- "go.sum"
|
|
env:
|
|
- CGO_ENABLED=0
|
|
- GOOS=linux
|
|
deps:
|
|
- components/supervisor-api/go:lib
|
|
- components/gitpod-protocol/go:lib
|
|
- components/common-go:lib
|
|
- components/ide-metrics-api/go:lib
|
|
- components/public-api/go:lib
|
|
config:
|
|
packaging: app
|
|
buildCommand: ["go", "build", "-trimpath", "-ldflags", "-buildid= -w -s -X 'github.com/gitpod-io/gitpod/gitpod-cli/pkg/gitpod.Version=commit-${__git_commit}'"]
|