Skip to content

Commit

Permalink
e2e disable windows (hashicorp#19012)
Browse files Browse the repository at this point in the history
* e2e: disable windows client

* e2e: disable windows artifact test
  • Loading branch information
shoenig authored Nov 7, 2023
1 parent 50f0ce5 commit a2f7ab2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions e2e/artifact/artifact_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ func artifactCheckLogContents(t *testing.T, nomad *api.Client, group, task strin
}

func testWindows(t *testing.T) {
t.Skip("SKIP WINDOWS TEST") // TODO restore when windows client is fixed

nomad := e2eutil.NomadClient(t)
jobID := "artifact-windows-" + uuid.Short()
jobIDs := []string{jobID}
Expand Down
2 changes: 1 addition & 1 deletion e2e/terraform/terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ region = "us-east-1"
instance_type = "t3a.medium"
server_count = "3"
client_count_ubuntu_jammy_amd64 = "4"
client_count_windows_2016_amd64 = "1"
client_count_windows_2016_amd64 = "0"
volumes = true

nomad_local_binary = "../../pkg/linux_amd64/nomad"
Expand Down
2 changes: 1 addition & 1 deletion e2e/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ variable "client_count_ubuntu_jammy_amd64" {

variable "client_count_windows_2016_amd64" {
description = "The number of windows 2016 clients to provision."
default = "1"
default = "0"
}

variable "restrict_ingress_cidrblock" {
Expand Down

0 comments on commit a2f7ab2

Please sign in to comment.