https://github.com/web-platform-tests/wpt
Raw File
Tip revision: a619744eead89c5105c98040bf77f11c40eaa311 authored by Geoffrey Sneddon on 09 October 2018, 17:34:30 UTC
Only run Windows CI for tools/ changes
Tip revision: a619744
.appveyor.yml
skip_branch_with_pr: true

clone_depth: 50

environment:
  matrix:
    - PYTHON: "C:\\Python27"
      JOB: "tools_unittest"
      SCRIPT: "tools\\ci\\ci_tools_unittest.ps1"
      TOX_DIR: "tools"
      TOXENV: "py27"
    - PYTHON: "C:\\Python27"
      JOB: "tools_unittest"
      SCRIPT: "tools\\ci\\ci_tools_unittest.ps1"
      TOX_DIR: "tools\\wptrunner"
      TOXENV: "py27"
    - PYTHON: "C:\\Python27"
      JOB: "wpt_integration"
      SCRIPT: "tools\\ci\\ci_tools_unittest.ps1"
      TOX_DIR: "tools\\wpt"
      TOXENV: "py27"
    - PYTHON: "C:\\Python27"
      JOB: "wptrunner_infrastructure"
      SCRIPT: "tools\\ci\\ci_wptrunner_infrastructure.ps1"
    - PYTHON: "C:\\Python36"
      JOB: "tools_unittest"
      SCRIPT: "tools\\ci\\ci_tools_unittest.ps1"
      TOX_DIR: "tools"
      TOXENV: "py36"

only_commits:
  files:
    - "tools\\**\\*"

install:
  - ps: "tools\\ci\\install.ps1"

build: off

test_script:
  - ps: ". $env:SCRIPT"

cache:
  - MANIFEST.json
back to top