summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2018-12-13 22:19:17 +0100
committerBert Belder <bertbelder@gmail.com>2018-12-19 17:50:25 +0100
commit73e80b0763cf2e14f7dc26d679d3b457106597cc (patch)
treee26c631f52723c063990c79cbf7b36733a14987b /.appveyor.yml
parent3a316330417945d46c8137e3d5e54325fd7b22ec (diff)
build: make `cargo build` work
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml7
1 files changed, 2 insertions, 5 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 100b1a82b..e6e4c64b5 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -8,9 +8,8 @@ clone_depth: 1
environment:
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- CARGO_TARGET_DIR: $(APPVEYOR_BUILD_FOLDER)\target
DENO_BUILD_MODE: release
- DENO_BUILD_PATH: $(APPVEYOR_BUILD_FOLDER)\out\release
+ DENO_BUILD_PATH: $(APPVEYOR_BUILD_FOLDER)\target\release
DENO_THIRD_PARTY_PATH: $(APPVEYOR_BUILD_FOLDER)\third_party
MTIME_CACHE_DB: $(APPVEYOR_BUILD_FOLDER)\mtime_cache.xml
RELEASE_ARTIFACT: deno_win_x64.zip
@@ -239,7 +238,6 @@ cache:
# Cache file mtimes in the main git repo, also to enable incremental builds.
- $(MTIME_CACHE_DB)
# Build incrementally.
- - $(CARGO_TARGET_DIR)
- $(DENO_BUILD_PATH)
init:
@@ -328,7 +326,6 @@ install:
before_build:
# Mark all files in the build dir 'not needed' until proven otherwise.
# TODO: also track files in third_party that aren't checked into the repo.
- # TODO: also track files in $CARGO_TARGET_DIR.
- ps: Start-TraceFilesNeeded $env:DENO_BUILD_PATH -Recurse
# Download clang and gn, generate ninja files.
@@ -346,7 +343,7 @@ before_build:
build_script:
- python tools\build.py
- ps: Set-FilesNeeded -Auto -Reason "Build finished"
- - cargo check --release
+ - cargo build -vv --release
- ps: Set-FilesNeeded -Auto -Reason "Cargo check finished"
test_script: