summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2019-09-12 19:01:55 +0200
committerBert Belder <bertbelder@gmail.com>2019-09-12 19:38:38 +0200
commit152de0129e6bf7108df46af6e22867dd94ce2049 (patch)
treeaad0fc32ceb63b01ec7e8e0ec369cc7a2c94ec7f
parente2421f78f30092324c5ec871649141bbc4ab10f7 (diff)
appveyor: do not explicitly configure GN/Ninja environment
Users shouldn't have to do this manually, so we want to configure CI such that it fails if our build scripts don't set it up automatically.
-rw-r--r--.appveyor.yml6
1 files changed, 0 insertions, 6 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index e0b7c66a1..746f3b059 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -102,12 +102,6 @@ install:
Exec -NoNewLines { & git submodule update --init --force --depth 1 }
}
- # Configure depot_tools and add it to the search path. This is necessary
- # because, later in this script, we need to invoke ninja directly.
- - ps: |-
- $env:PATH = "$env:DENO_THIRD_PARTY_PATH\depot_tools;$env:PATH"
- $env:DEPOT_TOOLS_WIN_TOOLCHAIN = "0"
-
# Install a recent Node.js version.
# TODO(ry) Upgrade to v12 once Install-Produce supports it.
- ps: Install-Product -Product node -Version 10 -Platform x64