We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 253801b commit 15d278aCopy full SHA for 15d278a
.github/workflows/build.yml
@@ -211,6 +211,10 @@ jobs:
211
RESULT=0
212
set -x
213
214
+ # tmp: Update leeway from branch to make testing easier
215
+ LEEWAY_BRANCH=clu/sbom-cve-2
216
+ LEEWAY_REPO_DIR=$(mktemp -d -t leeway-repo-XXXXXXXXXX) && git clone https://github.com/gitpod-io/leeway "$LEEWAY_REPO_DIR" && cd "$LEEWAY_REPO_DIR" && git switch ${LEEWAY_BRANCH} && git pull && go build -ldflags="-X github.com/gitpod-io/leeway/pkg/leeway.Version=0.10.2.sbom" -o leeway && sudo install -m 755 leeway /usr/bin/ && cd - && rm -rf "$LEEWAY_REPO_DIR"
217
+
218
leeway build dev:all \
219
--docker-build-options network=host \
220
--cache remote \
0 commit comments