This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
jdk-build-libs
/
json-c
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
11
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Add initial version of Appveyor build script
tags/json-c-0.13-20171207
James Myatt
James Myatt
10 years ago
parent
12916e229c
commit
f6f8436e97
1 changed files
with
25 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+25
-0
appveyor.yml
+ 25
- 0
appveyor.yml
View File
@@ -0,0 +1,25 @@
version: '{branch}.{build}'
os: Windows Server 2012 R2
configuration:
- Debug
- Release
platform: x64
environment:
matrix:
- PlatformToolset: v140
- PlatformToolset: v120
- PlatformToolset: Windows7.1SDK
build_script:
- >
msbuild "json-c.vcxproj" /m /verbosity:normal
/logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
/p:PlatformToolset=%PlatformToolset%
artifacts:
- path: Debug\*
name: Debug_x86
- path: Release\*
name: Release_x86
- path: x64\Debug\*
name: Debug_x64
- path: x64\Release\*
name: Release_x64
Write
Preview
Loading…
Cancel
Save