sccache 0.2.6

Sccache is a ccache-like tool. It is used as a compiler wrapper and avoids compilation when possible, storing a cache in a remote storage using the S3 API.
os: Visual Studio 2015

cache:
  - 'C:\Users\appveyor\.cargo'
  - target

matrix:
  allow_failures:
    - channel: nightly

install:
- appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init.exe -y --default-host %target% --default-toolchain %channel%
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
- rustc -V
- cargo -V

build_script:
- cmd: cargo build %RELEASE% --verbose --features="all-windows %EXTRA_FEATURES%"

test_script:
- cmd: cargo test --all %RELEASE% --verbose --features="all-windows %EXTRA_FEATURES%"

for:

-
  branches:
    only:
      - master
  environment:
    matrix:
      - channel: stable
        target: x86_64-pc-windows-msvc
      - channel: beta
        target: x86_64-pc-windows-msvc
      - channel: nightly
        target: x86_64-pc-windows-msvc
      - channel: 1.21.0 # Oldest supported version. Keep in sync with README.md.
        target: x86_64-pc-windows-msvc
        # Build a release build on master to make sure it builds.
      - channel: stable
        target: x86_64-pc-windows-msvc
        RELEASE: --release

-
  branches:
    only:
      - /\d+\.\d+\.\d+/
  environment:
    # Only build a release build for releases.
    channel: stable
    target: x86_64-pc-windows-msvc
    RELEASE: --release

  before_deploy:
    - ps: |
          $NAME = "sccache-${env:APPVEYOR_REPO_TAG_NAME}-${env:TARGET}"
          New-Item -Path $NAME -ItemType directory
          Copy-Item target/release/sccache.exe "${NAME}/"
          Copy-Item LICENSE "${NAME}/"
          Copy-Item README.md "${NAME}/"
          7z a -ttar "${NAME}.tar" "${NAME}"
          7z a "${NAME}.tar.gz" "${NAME}.tar"
          Push-AppveyorArtifact "${NAME}.tar.gz"

  deploy:
    artifact: /.*\.tar.gz/
    auth_token:
      secure: NKcPr8KYJE2osDxfO1xBDQHQRgJrhgItv2op6KKZSfLB01rq08M3243XdN3J5aaJ
    description: ''
    on:
      appveyor_repo_tag: true
    provider: GitHub
    force_update: true