Skip to content
This repository has been archived by the owner on Feb 26, 2023. It is now read-only.

Commit

Permalink
fix: Use correct path to Helm chart in chart integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pojntfx committed Mar 11, 2020
1 parent 4b1de8a commit 7d71500
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dibs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ targets:
unitTests: go test -v ./...
integrationTests: .bin/binaries/dhcpdd/dhcpdd-linux-amd64 --help
imageTests: docker run --platform linux/amd64 -e DIBS_TARGET=dhcpdd-linux -e TARGETPLATFORM=linux/amd64 pojntfx/dhcpdd:linux-amd64 /usr/local/bin/dhcpdd --help
chartTests: helm install dhcpdd .bin/chart/dhcpdd-*.tgz && helm delete dhcpdd
chartTests: helm install dhcpdd .bin/chart/dhcpdd/dhcpdd-*.tgz && helm delete dhcpdd
start: |
if [ "$DIBS_DEBUG" = "true" ]; then
pkill -9 dlv || true
Expand Down Expand Up @@ -58,7 +58,7 @@ targets:
unitTests: go test -v ./...
integrationTests: .bin/binaries/dhcpdd/dhcpdd-linux-arm64 --help
imageTests: docker run --platform linux/arm64 -e DIBS_TARGET=dhcpdd-linux -e TARGETPLATFORM=linux/arm64 pojntfx/dhcpdd:linux-arm64 /usr/local/bin/dhcpdd --help
chartTests: helm install dhcpdd .bin/chart/dhcpdd-*.tgz && helm delete dhcpdd
chartTests: helm install dhcpdd .bin/chart/dhcpdd/dhcpdd-*.tgz && helm delete dhcpdd
start: |
if [ "$DIBS_DEBUG" = "true" ]; then
pkill -9 dlv || true
Expand Down Expand Up @@ -192,7 +192,7 @@ targets:
unitTests: go test -v ./...
integrationTests: .bin/binaries/dhclientd/dhclientd-linux-amd64 --help
imageTests: docker run --platform linux/amd64 -e DIBS_TARGET=dhclientd-linux -e TARGETPLATFORM=linux/amd64 pojntfx/dhclientd:linux-amd64 /usr/local/bin/dhclientd --help
chartTests: helm install dhclientd .bin/chart/dhclientd-*.tgz && helm delete dhclientd
chartTests: helm install dhclientd .bin/chart/dhclientd/dhclientd-*.tgz && helm delete dhclientd
start: |
if [ "$DIBS_DEBUG" = "true" ]; then
pkill -9 dlv || true
Expand Down Expand Up @@ -232,7 +232,7 @@ targets:
unitTests: go test -v ./...
integrationTests: .bin/binaries/dhclientd/dhclientd-linux-arm64 --help
imageTests: docker run --platform linux/arm64 -e DIBS_TARGET=dhclientd-linux -e TARGETPLATFORM=linux/arm64 pojntfx/dhclientd:linux-arm64 /usr/local/bin/dhclientd --help
chartTests: helm install dhclientd .bin/chart/dhclientd-*.tgz && helm delete dhclientd
chartTests: helm install dhclientd .bin/chart/dhclientd/dhclientd-*.tgz && helm delete dhclientd
start: |
if [ "$DIBS_DEBUG" = "true" ]; then
pkill -9 dlv || true
Expand Down

0 comments on commit 7d71500

Please sign in to comment.