Skip to content

Commit

Permalink
Fixing path for images that do not have git installed (nephio-project…
Browse files Browse the repository at this point in the history
  • Loading branch information
radoslawc authored and dkosteck committed Aug 15, 2024
1 parent 828ab8e commit c726368
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .prow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ presubmits:
- "/bin/sh"
args:
- "-c"
- set -eE; cd "$(git rev-parse --show-toplevel)/e2e/provision"; /usr/local/bin/tox -e lint
- set -eE; cd e2e/provision; /usr/local/bin/tox -e lint
- name: images-hadolint
annotations:
labels:
Expand All @@ -43,7 +43,7 @@ presubmits:
- "/bin/sh"
args:
- "-c"
- set -eE; for dockerfile in "$(git rev-parse --show-toplevel)/images/*/Dockerfile"; do hadolint $dockerfile -t warning; done
- set -eE; for dockerfile in images/*/Dockerfile; do hadolint $dockerfile -t warning; done
- name: bootstrap-integration
annotations:
labels:
Expand All @@ -58,7 +58,7 @@ presubmits:
- "/bin/sh"
args:
- "-c"
- set -eE; cd "$(git rev-parse --show-toplevel)/e2e/provision"; /usr/local/bin/tox -e bootstrap -- --scenario-name ci --driver-name gce
- set -eE; cd e2e/provision; /usr/local/bin/tox -e bootstrap -- --scenario-name ci --driver-name gce
volumeMounts:
- name: satoken
mountPath: "/etc/satoken"
Expand All @@ -83,7 +83,7 @@ presubmits:
- "/bin/sh"
args:
- "-c"
- set -eE; cd "$(git rev-parse --show-toplevel)/e2e/provision"; /usr/local/bin/tox -e kpt -- --scenario-name ci --driver-name gce
- set -eE; cd e2e/provision; /usr/local/bin/tox -e kpt -- --scenario-name ci --driver-name gce
volumeMounts:
- name: satoken
mountPath: "/etc/satoken"
Expand All @@ -108,7 +108,7 @@ presubmits:
- "/bin/sh"
args:
- "-c"
- set -eE; cd "$(git rev-parse --show-toplevel)/e2e/provision"; /usr/local/bin/tox -e install -- --scenario-name ci --driver-name gce
- set -eE; cd e2e/provision; /usr/local/bin/tox -e install -- --scenario-name ci --driver-name gce
volumeMounts:
- name: satoken
mountPath: "/etc/satoken"
Expand Down

0 comments on commit c726368

Please sign in to comment.