Skip to content

Commit 893c5bc

Browse files
committed
add windows ci
1 parent e502152 commit 893c5bc

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

.appveyor.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
environment:
2+
matrix:
3+
- julia_version: 1.0
4+
- julia_version: 1.1
5+
- julia_version: latest
6+
7+
platform:
8+
- x64 # 64-bit
9+
10+
matrix:
11+
allow_failures:
12+
- julia_version: latest
13+
14+
branches:
15+
only:
16+
- master
17+
18+
notifications:
19+
- provider: Email
20+
on_build_success: false
21+
on_build_failure: false
22+
on_build_status_changed: false
23+
24+
install:
25+
- ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1"))
26+
27+
build_script:
28+
- echo "%JL_BUILD_SCRIPT%"
29+
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
30+
31+
test_script:
32+
- echo "%JL_TEST_SCRIPT%"
33+
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
34+

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# BytePairEncoding.jl
44

55
[![Build Status](https://travis-ci.com/chengchingwen/BytePairEncoding.jl.svg?branch=master)](https://travis-ci.com/chengchingwen/BytePairEncoding.jl)
6+
[![Build status](https://ci.appveyor.com/api/projects/status/vy07wjkoj1qhav83?svg=true)](https://ci.appveyor.com/project/chengchingwen/bytepairencoding-jl)
67
[![codecov](https://codecov.io/gh/chengchingwen/BytePairEncoding.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/chengchingwen/BytePairEncoding.jl)
78

89
Pure Julia implementation of the Byte Pair Encoding(BPE) method

0 commit comments

Comments
 (0)