annotate appveyor.yml @ 1051:971b4d67e82a

serve: Fix problems with assets disappearing between servings. When an asset file changes, its source's pipeline is re-run. But that created a bake record that only had that pipeline's output, so the other outputs were incorrectly considered empty and therefore any stray files were removed. Now we copy over bake records for the pipelines we don't run.
author Ludovic Chabant <ludovic@chabant.com>
date Fri, 26 Jan 2018 18:05:02 -0800
parents 783ff8bc4e03
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
672
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
1 environment:
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
2 matrix:
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
3 - PYTHON: "C:\\Python34"
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
4 - PYTHON: "C:\\Python34-x64"
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
5 - PYTHON: "C:\\Python35"
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
6 - PYTHON: "C:\\Python35-x64"
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
7
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
8 install:
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
9 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
10 - "pip install -r requirements.txt"
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
11 - "pip install -r dev-requirements.txt"
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
12
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
13 build: off
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
14
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
15 test_script:
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
16 - "py.test"
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
17