forked from rubys/nokogumbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
36 lines (30 loc) · 1.05 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: 1.0.{build}-{branch}
cache:
- vendor/bundle
environment:
NO_GUMBO_TESTS: true
matrix:
- RUBY_VERSION: 23
- RUBY_VERSION: 23-x64
- RUBY_VERSION: 24
- RUBY_VERSION: 24-x64
- RUBY_VERSION: 25
- RUBY_VERSION: 25-x64
- RUBY_VERSION: 26
- RUBY_VERSION: 26-x64
install:
- set PATH=C:\Ruby%RUBY_VERSION%\bin;C:\msys64\usr\bin;%PATH%
- set RAKEOPT=-rdevkit
- ruby --version
- gem --version
- bundle --version
- bundle install --path vendor/bundle
- bundle exec nokogiri --version
- git clone --depth 1 --branch all-error-fixes --single-branch https://github.com/stevecheckoway/html5lib-tests.git test/html5lib-tests
#- git clone --depth 1 --branch master --single-branch https://github.com/html5lib/html5lib-tests.git test/html5lib-tests
build: off
test_script:
- bash scripts/ci-package-test.sh
# Uncomment to enable RDP access to the builder.
# on_finish:
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))