-
Notifications
You must be signed in to change notification settings - Fork 3
/
.appveyor.yml
51 lines (47 loc) · 1.18 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
build: off
environment:
global:
APPVEYOR: True
CI: True
matrix:
- job_name: ubuntu (2.6)
appveyor_build_worker_image: Ubuntu2004
RUBY_VERSION: ruby-2.6
- job_name: ubuntu (2.7)
appveyor_build_worker_image: Ubuntu2004
RUBY_VERSION: ruby-2.7
- job_name: ubuntu (3.0)
appveyor_build_worker_image: Ubuntu2004
RUBY_VERSION: ruby-3.0
- job_name: macos (2.6)
appveyor_build_worker_image: macos
RUBY_VERSION: ruby-2.6
- job_name: macos (2.7)
appveyor_build_worker_image: macos
RUBY_VERSION: ruby-2.7
- job_name: macos (3.0)
appveyor_build_worker_image: macos
RUBY_VERSION: ruby-3.0
for:
-
matrix:
only:
- job_name: ubuntu (2.6)
- job_name: ubuntu (2.7)
- job_name: ubuntu (3.0)
init:
- sh: sudo apt-get install -y libzstd-dev
test_script:
- sh: rvm use "$RUBY_VERSION"
- sh: scripts/ci_test.sh
-
matrix:
only:
- job_name: macos (2.6)
- job_name: macos (2.7)
- job_name: macos (3.0)
init:
- sh: brew install zstd
test_script:
- sh: rvm use "$RUBY_VERSION"
- sh: scripts/ci_test.sh