diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 68a2778682..1a8f1b1053 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -5,6 +5,7 @@ // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp "editorconfig.editorconfig", "yzhang.markdown-all-in-one", - "hashicorp.terraform" + "hashicorp.terraform", + "firsttris.vscode-jest-runner" ] -} \ No newline at end of file +} diff --git a/images/linux-amzn2/github_agent.linux.pkr.hcl b/images/linux-amzn2/github_agent.linux.pkr.hcl index cc71de6374..bc17a9fded 100644 --- a/images/linux-amzn2/github_agent.linux.pkr.hcl +++ b/images/linux-amzn2/github_agent.linux.pkr.hcl @@ -182,4 +182,8 @@ build { ] } + post-processor "manifest" { + output = "manifest.json" + strip_path = true + } } diff --git a/images/ubuntu-focal/github_agent.ubuntu.pkr.hcl b/images/ubuntu-focal/github_agent.ubuntu.pkr.hcl index 87214c6b88..ed11e9a0d6 100644 --- a/images/ubuntu-focal/github_agent.ubuntu.pkr.hcl +++ b/images/ubuntu-focal/github_agent.ubuntu.pkr.hcl @@ -193,5 +193,8 @@ build { "sudo chmod +x /var/lib/cloud/scripts/per-boot/start-runner.sh", ] } - + post-processor "manifest" { + output = "manifest.json" + strip_path = true + } } diff --git a/images/ubuntu-jammy-arm64/github_agent.ubuntu.pkr.hcl b/images/ubuntu-jammy-arm64/github_agent.ubuntu.pkr.hcl index da5bd3d6fa..4fa5dfb414 100644 --- a/images/ubuntu-jammy-arm64/github_agent.ubuntu.pkr.hcl +++ b/images/ubuntu-jammy-arm64/github_agent.ubuntu.pkr.hcl @@ -193,5 +193,8 @@ build { "sudo chmod +x /var/lib/cloud/scripts/per-boot/start-runner.sh", ] } - + post-processor "manifest" { + output = "manifest.json" + strip_path = true + } } diff --git a/images/ubuntu-jammy/github_agent.ubuntu.pkr.hcl b/images/ubuntu-jammy/github_agent.ubuntu.pkr.hcl index c57ff272e5..55722d1a20 100644 --- a/images/ubuntu-jammy/github_agent.ubuntu.pkr.hcl +++ b/images/ubuntu-jammy/github_agent.ubuntu.pkr.hcl @@ -193,5 +193,8 @@ build { "sudo chmod +x /var/lib/cloud/scripts/per-boot/start-runner.sh", ] } - + post-processor "manifest" { + output = "manifest.json" + strip_path = true + } } diff --git a/images/windows-core-2019/github_agent.windows.pkr.hcl b/images/windows-core-2019/github_agent.windows.pkr.hcl index b73ce89817..38cfd06e07 100644 --- a/images/windows-core-2019/github_agent.windows.pkr.hcl +++ b/images/windows-core-2019/github_agent.windows.pkr.hcl @@ -107,4 +107,8 @@ build { }) ], var.custom_shell_commands) } + post-processor "manifest" { + output = "manifest.json" + strip_path = true + } } diff --git a/images/windows-core-2022/github_agent.windows.pkr.hcl b/images/windows-core-2022/github_agent.windows.pkr.hcl index 865677cac1..141a389c8e 100644 --- a/images/windows-core-2022/github_agent.windows.pkr.hcl +++ b/images/windows-core-2022/github_agent.windows.pkr.hcl @@ -121,4 +121,8 @@ build { }) ], var.custom_shell_commands) } + post-processor "manifest" { + output = "manifest.json" + strip_path = true + } }