We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 082bc32 commit 507be66Copy full SHA for 507be66
1 file changed
.github/workflows/wallet-e2e.yml
@@ -48,10 +48,16 @@ jobs:
48
| tar -xzC /usr/local/bin helmfile
49
helm plugin install https://github.com/databus23/helm-diff --version v3.14.1
50
51
- - name: Build obol binary
+ - name: Build obol binary and link dependencies
52
run: |
53
mkdir -p .workspace/bin
54
go build -o .workspace/bin/obol ./cmd/obol
55
+ # obol looks for tools in OBOL_BIN_DIR — symlink the globally-installed ones.
56
+ for bin in k3d helm helmfile kubectl; do
57
+ if command -v "$bin" &>/dev/null && [ ! -e ".workspace/bin/$bin" ]; then
58
+ ln -s "$(command -v "$bin")" ".workspace/bin/$bin"
59
+ fi
60
+ done
61
62
- name: Start cluster
63
0 commit comments