Skip to content

Commit

Permalink
Added appveyor.yml (#204)
Browse files Browse the repository at this point in the history
* Added appveyor.yml

* remove x86

* change how envs are made

* is it using the wrong python?

* force python versions?

* setup python correctly maybe?

* use correct python now that path is et

* fix build false

* add badge remove 3.6

only going to test 3.7 for windows
#speed

* point this at correct branch

* add appveyor badge

* change to using correct build project for status

* added webhook maybe?

* changed build number info yo
  • Loading branch information
dtracers authored Oct 25, 2019
1 parent 42838c3 commit 54b5f17
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[![Build Status](https://travis-ci.org/SaltieRL/carball.svg?branch=master)](https://travis-ci.org/SaltieRL/carball)
[![PyPI version](https://badge.fury.io/py/carball.svg)](https://badge.fury.io/py/carball)
[![codecov](https://codecov.io/gh/SaltieRL/carball/branch/master/graph/badge.svg)](https://codecov.io/gh/SaltieRL/carball)
[![Build status](https://ci.appveyor.com/api/projects/status/jxsa56l11fxv4jn4/branch/master?svg=true)](https://ci.appveyor.com/project/SaltieRL/carball/branch/master)

# carball
Various tools for decompiling / analyzing Rocket League replays.
Expand Down
42 changes: 42 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@

version: 0.6.{build}
pull_requests:
do_not_increment_build_number: true

skip_tags: true

# Do not build feature branch with open Pull Requests
skip_branch_with_pr: true


environment:
PYTHON_ARCH: "64"

matrix:
- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.4"

install:
# Prepend newly installed Python to the PATH of this build (this cannot be
# done from inside the powershell script as it would require to restart
# the parent CMD process).
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "SET PYTHONPATH=%PYTHON%\\Lib\\site-packages;%PYTHONPATH%"
- python --version

- python -m pip install --upgrade pip
- pip install -r requirements.txt
- pip install -r requirements-test.txt
- python init.py

build: false

test_script:
- pytest --cov=./ --ignore=protobuf-2.6.1/


notifications:
- provider: GitHubPullRequest
on_build_success: true
on_build_failure: true
on_build_status_changed: false

0 comments on commit 54b5f17

Please sign in to comment.