summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-08-17 18:23:14 -0400
committerBert Belder <bertbelder@gmail.com>2018-08-18 01:09:48 +0200
commit81b042c8db510de729200ad4eb757b171fbb6236 (patch)
treed21655cc5a4493934b00ea7129f75ae62e8a1911 /.appveyor.yml
parent3640ea4c0d1e47c672cae94d3f3efe63a845d0ae (diff)
Rename :all target to :default
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml4
1 files changed, 1 insertions, 3 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index fbe8fe43c..1350e44fa 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -298,8 +298,6 @@ before_build:
# Mark files that are produced during the build, and are known to ninja, as
# needed. We obtain this list by dry-running `ninja -t clean`.
- # N.b.: we deliberately do *not* pass `:all` to the clean command. It misses
- # some important files, e.g. .exe and .pdb files.
- ps: |-
$outputs = ninja -C $env:DENO_BUILD_PATH -n -t clean -g |
where { $_ -match "^Remove (.*)$" } |
@@ -327,7 +325,7 @@ after_test:
# Verify that the build is fully up-to-date. Running ninja should be a no-op.
# This catches erroneous file cleanup, and incorrectly set up build deps.
- ps: |-
- $out = ninja -C $env:DENO_BUILD_PATH -n -d explain :all
+ $out = ninja -C $env:DENO_BUILD_PATH -n -d explain
if ($out -notcontains "ninja: no work to do.") {
throw "Build should be up-to-date but isnt't."
}