-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable
fail fast
CI feature to reduce the End-to-End testing consum…
…ption (#230) * Reduce the CI time enabling failing fast feature Signed-off-by: Victor Morales <[email protected]> * Increase e2e timeout to 120min Signed-off-by: Victor Morales <[email protected]> * Improve kpt info messages Signed-off-by: Victor Morales <[email protected]> * Enable fail fast feature in Vagrant deployments Signed-off-by: Victor Morales <[email protected]> * Increase waiting time for upf-edge0 deployment Signed-off-by: Victor Morales <[email protected]> * Drop nephio_pkg_version terraform variable Signed-off-by: Victor Morales <[email protected]> * Implement porch_wait_published_packagerev test function Signed-off-by: Victor Morales <[email protected]> * Improve waiting time in 004.sh free5gc test Signed-off-by: Victor Morales <[email protected]> * Fix OAI test script formats Signed-off-by: Victor Morales <[email protected]> * Remove corrupted APT files Signed-off-by: Victor Morales <[email protected]> --------- Signed-off-by: Victor Morales <[email protected]>
- Loading branch information
1 parent
daf4081
commit 7a82a1f
Showing
16 changed files
with
144 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
module "gcp-ubuntu-focal" { | ||
source = ".//modules/gcp" | ||
nephio_pkg_version = var.pkg_version | ||
nephio_e2e_type = var.e2e_type | ||
source = ".//modules/gcp" | ||
nephio_e2e_type = var.e2e_type | ||
nephio_e2e_fail_fast = var.fail_fast | ||
} | ||
|
||
module "gcp-ubuntu-jammy" { | ||
source = ".//modules/gcp" | ||
vmimage = "ubuntu-os-cloud/ubuntu-2204-lts" | ||
nephio_pkg_version = var.pkg_version | ||
nephio_e2e_type = var.e2e_type | ||
source = ".//modules/gcp" | ||
vmimage = "ubuntu-os-cloud/ubuntu-2204-lts" | ||
nephio_e2e_type = var.e2e_type | ||
nephio_e2e_fail_fast = var.fail_fast | ||
} | ||
|
||
module "gcp-fedora-34" { | ||
source = ".//modules/gcp" | ||
vmimage = "fedora-cloud/fedora-cloud-34" | ||
ansible_user = "fedora" | ||
nephio_pkg_version = var.pkg_version | ||
nephio_e2e_type = var.e2e_type | ||
} | ||
|
||
variable "pkg_version" { | ||
description = "The version used for all the nephio packages" | ||
default = "main" | ||
type = string | ||
source = ".//modules/gcp" | ||
vmimage = "fedora-cloud/fedora-cloud-34" | ||
ansible_user = "fedora" | ||
nephio_e2e_type = var.e2e_type | ||
nephio_e2e_fail_fast = var.fail_fast | ||
} | ||
|
||
variable "e2e_type" { | ||
description = "The End-to-End testing type" | ||
default = "free5gc" | ||
type = string | ||
} | ||
|
||
variable "fail_fast" { | ||
description = "Defines the behavior after failing a testing" | ||
default = "false" | ||
type = string | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.