Skip to content

Commit

Permalink
Adding path alias in extra_refs and changing execution path in e2e pe…
Browse files Browse the repository at this point in the history
…riodics (#208)
  • Loading branch information
radoslawc authored Oct 27, 2023
1 parent dbf98b1 commit 10c1850
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions prow/config/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1527,6 +1527,7 @@ periodics:
- org: nephio-project
repo: test-infra
base_ref: main
path_alias: nephio_repo/test-infra
spec:
containers:
- image: "nephio/e2e:latest"
Expand All @@ -1535,7 +1536,7 @@ periodics:
args:
- "-c"
- |
set -eE; cd "$(git rev-parse --show-toplevel)/e2e/terraform"; trap 'terraform destroy -target module.gcp-ubuntu-focal -auto-approve' EXIT;
set -eE; cd "$GOPATH/src/nephio_repo/test-infra/e2e/terraform"; trap 'terraform destroy -target module.gcp-ubuntu-focal -auto-approve' EXIT;
terraform init && timeout 75m terraform apply -target module.gcp-ubuntu-focal -auto-approve
volumeMounts:
- name: satoken
Expand Down Expand Up @@ -1581,6 +1582,7 @@ periodics:
- org: nephio-project
repo: test-infra
base_ref: main
path_alias: nephio_repo/test-infra
spec:
containers:
- image: "nephio/e2e:latest"
Expand All @@ -1589,7 +1591,7 @@ periodics:
args:
- "-c"
- |
set -eE; cd "$(git rev-parse --show-toplevel)/e2e/terraform"; trap 'terraform destroy -target module.gcp-fedora-34 -auto-approve' EXIT;
set -eE; cd "$GOPATH/src/nephio_repo/test-infra/e2e/terraform"; trap 'terraform destroy -target module.gcp-fedora-34 -auto-approve' EXIT;
terraform init && timeout 75m terraform apply -target module.gcp-fedora-34 -auto-approve
volumeMounts:
- name: satoken
Expand Down

0 comments on commit 10c1850

Please sign in to comment.