Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
38 lines (30 loc) · 1.48 KB

File metadata and controls

38 lines (30 loc) · 1.48 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
version: "{build}"
# Do not use shallow_clone: it fetches a source archive with no .git, so the
# Prism compiler submodule (mrbgems/mruby-compiler/lib/prism) cannot be checked
# out and the build aborts on "git submodule update". A normal clone keeps .git
# so the submodule can be initialized in install below.
clone_depth: 1
environment:
matrix:
- job_name: Visual Studio 2022 64-bit
visualcpp: C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat
appveyor_build_worker_image: Visual Studio 2022
- job_name: Visual Studio 2019 64-bit
visualcpp: C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat
appveyor_build_worker_image: Visual Studio 2019
- job_name: Visual Studio 2019 32-bit
visualcpp: C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars32.bat
appveyor_build_worker_image: Visual Studio 2019
# Visual Studio 2015 and 2017 are dropped: their worker images top out at Ruby
# 2.6, but the Prism compiler the build now depends on requires Ruby >= 2.7 to
# generate its sources. The 2019 and 2022 images ship a new enough Ruby.
init:
- call "%visualcpp%" %machine%
- ruby --version
install:
# Fetch the Prism compiler submodule (init runs before the clone, so this
# must be here, after the repository is checked out).
- git submodule update --init --recursive
build_script:
- set MRUBY_CONFIG=ci/msvc
- rake -m test:run:serial
Morty Proxy This is a proxified and sanitized view of the page, visit original site.