Skip to content

Commit b3d6947

Browse files
committed
Add appveyor.yml
1 parent 41096ec commit b3d6947

3 files changed

Lines changed: 23 additions & 3 deletions

File tree

CHANGES.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
0.1
2-
3-
------------
1+
### 0.1 (2017-05-23)
42

53
* Initial release

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Nullable-array
2+
13
Nullable-array is a small self-contained library providing an efficient implementation for a type equivalent to `'a option array`
24

35
```OCaml
@@ -6,3 +8,6 @@ Nullable_array.set 1 (Some 4);
68
assert(Nullable_array.get 0 = None);
79
assert(Nullable_array.get 1 = Some 4);
810
```
11+
12+
[![Build Status](https://travis-ci.org/chambart/ocaml-nullable-array.svg)](https://travis-ci.org/chambart/ocaml-nullable-array)
13+

appveyor.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
platform:
2+
- x86
3+
4+
environment:
5+
FORK_USER: ocaml
6+
FORK_BRANCH: master
7+
CYG_ROOT: C:\cygwin64
8+
PACKAGE: nullable-array
9+
TESTS: true
10+
matrix:
11+
- OPAM_SWITCH: 4.04.0+mingw64c
12+
13+
install:
14+
- ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/$env:FORK_USER/ocaml-ci-scripts/$env:FORK_BRANCH/appveyor-install.ps1"))
15+
16+
build_script:
17+
- call %CYG_ROOT%\bin\bash.exe -l %APPVEYOR_BUILD_FOLDER%\appveyor-opam.sh

0 commit comments

Comments
 (0)