afed3a7898
I have tried to install new windows machine for buildkite and updated some scrips and docs on along the way. - Updated base image for k8s agent installation as it gave a warning that previous version was old. - Now buildkite secret is configured in a powershell script along with tags (and possible other parameters). - Split "windows_agent_start.ps1" to "..jenkins" and "..buildkite" as some parameters are different. - Created a "windows-development" machine in GCP stat can be resumed to build docker images / expriment.
8 lines
No EOL
233 B
Docker
8 lines
No EOL
233 B
Docker
# escape=`
|
|
|
|
# use windows server core image
|
|
ARG agent_windows_version=latest
|
|
FROM gcr.io/llvm-premerge-checks/agent-windows-vs2019:${agent_windows_version}
|
|
|
|
COPY start_agent.ps1 C:\scripts\
|
|
CMD "powershell C:\scripts\start_agent.ps1" |