Skip to content

Commit

Permalink
Update .appveyor.yml and README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Paalon committed Feb 27, 2020
1 parent 6c241c9 commit f74db89
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 48 deletions.
43 changes: 43 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
environment:
matrix:
- julia_version: 1.0
- julia_version: 1.3
- julia_version: nightly

platform:
- x86 # 32-bit
- x64 # 64-bit

# uncomment the following lines to allow failures on nightly julia
# (tests will run but not make your overall status red)
matrix:
allow_failures:
- julia_version: nightly

branches:
only:
- master
- /release-.*/

notifications:
- provider: Email
on_build_success: false
on_build_failure: false
on_build_status_changed: false

install:
- ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1"))

build_script:
- echo "%JL_BUILD_SCRIPT%"
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"

test_script:
- echo "%JL_TEST_SCRIPT%"
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"

# # Uncomment to support code coverage upload. Should only be enabled for packages
# # which would have coverage gaps without running on Windows
# on_success:
# - echo "%JL_CODECOV_SCRIPT%"
# - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ os:
- osx
julia:
- 1.0
- 1.3
- nightly
notifications:
email: false
Expand Down
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

_Waveform functions for Julia._

[![Build Status](https://travis-ci.org/Paalon/Waveforms.jl.svg?branch=master)](https://travis-ci.org/Paalon/Waveforms.jl) [![Coverage Status](https://coveralls.io/repos/Paalon/Waveforms.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/Paalon/Waveforms.jl?branch=master) [![codecov.io](http://codecov.io/github/Paalon/Waveforms.jl/coverage.svg?branch=master)](http://codecov.io/github/Paalon/Waveforms.jl?branch=master)
| Build Status | Code Coverage |
| ------------ | ------------- |
| [![Linux and macOS build status][travis-img]][travis-url] [![Windows build status][appveyor-img]][appveyor-url] | [![Coverage Status][coverage-img]][coverage-url] [![Coverage Status][codecov-img]][codecov-url] |

Waveform functions library. Following functions are supported:

Expand Down Expand Up @@ -102,3 +104,15 @@ julia> lineplot([trianglewave, sin], -π/2, 2π)
x

```

[travis-img]: https://travis-ci.org/Paalon/Waveforms.jl.svg?branch=master
[travis-url]: https://travis-ci.org/Paalon/Waveforms.jl

[appveyor-img]: https://ci.appveyor.com/project/Paalon/waveforms-jl
[appveyor-url]: https://ci.appveyor.com/project/Paalon/waveforms-jl

[coverage-img]: https://coveralls.io/repos/Paalon/Waveforms.jl/badge.svg?branch=master&service=github
[coverage-url]: https://coveralls.io/github/Paalon/Waveforms.jl?branch=master

[codecov-img]: https://codecov.io/gh/Paalon/Waveforms.jl/branch/master/graph/badge.svg
[codecov-url]: https://codecov.io/gh/Paalon/Waveforms.jl
47 changes: 0 additions & 47 deletions appveyor.yml

This file was deleted.

0 comments on commit f74db89

Please sign in to comment.