This repository was archived by the owner on Oct 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy path.appveyor.yml
More file actions
48 lines (39 loc) · 1.38 KB
/
.appveyor.yml
File metadata and controls
48 lines (39 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
version: "{build}"
clone_folder: c:\xrtl\
#cache:
#- C:\bazel_root\execroot\xrtl\bazel-out\host -> .appveyor.yml
#- C:\bazel_root\execroot\xrtl\bazel-out\msvc_x64-dbg\bin -> .appveyor.yml
#- C:\bazel_root\execroot\xrtl\bazel-out\msvc_x64-dbg\genfiles -> .appveyor.yml
#- C:\bazel_root\execroot\xrtl\bazel-out\stable-status.txt -> .appveyor.yml
#- C:\bazel_root\execroot\xrtl\bazel-out\volatile-status.txt -> .appveyor.yml
#- c:\install_cache\ -> .appveyor.yml
skip_tags: true
skip_branch_with_pr: true
skip_commits:
files:
- docs/*
- README.md
environment:
global:
WORKSPACE: c:\xrtl\
BAZEL_ROOT: c:\bazel_root\
INSTALL_CACHE: c:\install_cache\
APPVEYOR_SAVE_CACHE_ON_ERROR: true
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
install:
- set PATH=%PATH%;%INSTALL_CACHE%
- cmd: tools\ci\appveyor\install.bat
build_script:
- cmd: tools\ci\appveyor\build.bat
test_script:
- ps: Add-AppveyorTest "Unit Tests" -Outcome Running
- cmd: tools\ci\appveyor\test.bat
- ps: Update-AppveyorTest "Unit Tests" -Outcome Passed
# Enable to debug issues:
#on_finish:
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
# TODO(benvanik): upload gtest logs, golden diffs, etc.
#after_test:
#- ps: Push-AppveyorArtifact some_artifact.txt
deploy: off