Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
image: Visual Studio 2017 Preview
version: 1.0.{build}
platform: x64

branches:
only:
- master

skip_commits:
files:
- README.md

build:
verbosity: normal

# There's no need to alter the build number for a Pull Request (PR)
# since they don't modify anything.
pull_requests:
do_not_increment_build_number: true

install:
- ps: systeminfo | Select-String "^OS Name", "^OS Version"
# https://docs.microsoft.com/en-us/windows/wsl/install-on-server
- ps: Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
- ps: Invoke-WebRequest -Uri https://aka.ms/wsl-ubuntu-1604 -OutFile ~/Ubuntu1604.zip -UseBasicParsing
- ps: Expand-Archive ~/Ubuntu1604.zip ~/Ubuntu

#test_script:

notifications:
- provider: Slack
auth_token:
secure: D6cxJ/Hs7jf2UnblHSkQi/XvBLrBjg6ElBAOrOd8752O/iboRfyaZRyRbY3dqzq9LCY9/OFH4yrYZ29cKu981WjR5Vr18sNqDzjQIIvygYA=
channel: notifications
on_build_success: true
on_build_failure: true
on_build_status_changed: false
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ matrix/*
!.eslint*
!.version
!.codespellignore
!.appveyor.yml
!.rubocop.yml
!.travis.yml

Expand Down
3 changes: 2 additions & 1 deletion docs/_documentation/install-on-wsl/wsl-provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ pip --version
# ==============================================================================
# Install Ansible.

has ansible || sudo pip install ansible
# @todo See lib/variables.py
has ansible || sudo pip install ansible==2.5.0
ansible --version

# ==============================================================================
Expand Down