017ca44a75
- configured sccache on buildkite windows machines - final result is sent to phabricator from "summary.py" that waits for both builds to complete - extracted "add_url_artifact" to a runnable script - reorganized code and fixed some of TODOs
9 lines
359 B
PowerShell
9 lines
359 B
PowerShell
c:\credentials\buildkite-env.ps1
|
|
# Install Buildkite agent.
|
|
iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/buildkite/agent/master/install.ps1'))
|
|
|
|
$env:SCCACHE_DIR="C:\ws\sccache"
|
|
Remove-Item -Recurse -Force -ErrorAction Ignore $env:SCCACHE_DIR
|
|
sccache --start-server
|
|
|
|
C:\buildkite-agent\bin\buildkite-agent.exe start
|