tweetr 0.2.1

tweetr is a platform that allows you to create and queue tweets to be shared when YOU want. You create content when you have time and then use FOSS and NOT pay whatever-ridiculous amount of $$$ for posting them automatically.
version: 0.2.1-{build}

branches:
  except:
    - doc

skip_tags: false

platform: x64
configuration: Release

clone_folder: C:\tweetr

install:
  - set PATH=C:\msys64\mingw64\bin;C:\msys64\usr\bin;%PATH%;C:\Users\appveyor\.cargo\bin
  - bash -lc "pacman --needed --noconfirm -Sy pacman-mirrors"
  - bash -lc "pacman --noconfirm -Sy"
  - bash -lc "pacman --noconfirm -S mingw-w64-x86_64-toolchain"
  -
  - curl -SL https://win.rustup.rs/ -oC:\rustup-init.exe
  - C:\rustup-init.exe -y --default-host="x86_64-pc-windows-gnu"

build: off
build_script:
  - git submodule update --init --recursive
  - cargo build --verbose --release
  - cp target\release\tweetr.exe tweetr-v0.2.1.exe
  - strip --strip-all --remove-section=.comment --remove-section=.note tweetr-v0.2.1.exe

test: off
test_script:
  - cargo test --verbose --release

artifacts:
  - path: tweetr-v0.2.1.exe

deploy:
  provider: GitHub
  artifact: tweetr-v0.2.1.exe
  auth_token:
    secure: crD1L8q7MVevqyQ28+lEUhZn8fcePgzJL4fseg6MOYCLrwf1FXp6J+iWGZpJL4/E
  on:
    appveyor_repo_tag: true

notifications:
  - provider: Email
    to:
      - nabijaczleweli@gmail.com
    on_build_status_changed: true