From 5e92af52aa96fd3e2eb8d8e2540a237bb7cfa892 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ulises=20Gasc=C3=B3n?= Date: Sat, 31 Aug 2024 01:44:23 +0200 Subject: [PATCH] feat: delete Packer image for MacOS 11 - Related https://github.com/nodejs/build/issues/3686 - Related https://github.com/nodejs/build/issues/3876 --- orka/templates/macos-11-intel-test.pkr.hcl | 49 ---------------------- 1 file changed, 49 deletions(-) delete mode 100644 orka/templates/macos-11-intel-test.pkr.hcl diff --git a/orka/templates/macos-11-intel-test.pkr.hcl b/orka/templates/macos-11-intel-test.pkr.hcl deleted file mode 100644 index cf815f1d0..000000000 --- a/orka/templates/macos-11-intel-test.pkr.hcl +++ /dev/null @@ -1,49 +0,0 @@ -variable "orka_endpoint" { - type = string - default = "" -} - -variable "orka_auth_token" { - type = string - default = "" -} - -variable "ssh_username" { - type = string - default = "" -} - -variable "ssh_password" { - type = string - default = "" -} - -packer { - required_plugins { - macstadium-orka = { - version = "~> 3.0" - source = "github.com/macstadium/macstadium-orka" - } - } -} - -source "macstadium-orka" "macos11-intel-test-image" { - source_image = "90gbigsurssh.img" - image_name = "macos11-intel-test-latest.img" - image_description = "The MacOS 11 Intel test image" - orka_endpoint = var.orka_endpoint - orka_auth_token = var.orka_auth_token -} - -build { - sources = [ - "macstadium-orka.macos11-intel-test-image" - ] - provisioner "shell" { - inline = [ - "echo we are running on the remote host", - "hostname", - "touch .we-ran-packer-successfully" - ] - } -} \ No newline at end of file