-
Notifications
You must be signed in to change notification settings - Fork 287
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[vcpkg-artifacts] Fix end to end development. #586
Changes from all commits
703a087
c28bf00
ae2705e
130b139
f278699
a6782ee
9c3b195
3ef7024
68e8ec0
09da874
29bc405
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "x64-Debug", | ||
"generator": "Ninja", | ||
"configurationType": "Debug", | ||
"inheritEnvironments": [ "msvc_x64_x64" ], | ||
"buildRoot": "${projectDir}\\out\\build\\${name}", | ||
"installRoot": "${projectDir}\\out\\install\\${name}", | ||
"cmakeCommandArgs": "", | ||
"buildCommandArgs": "", | ||
"ctestCommandArgs": "", | ||
"variables": [ | ||
{ | ||
"name": "VCPKG_ARTIFACTS_DEVELOPMENT", | ||
"value": "True", | ||
"type": "BOOL" | ||
}, | ||
{ | ||
"name": "VCPKG_BUILD_TLS12_DOWNLOADER", | ||
"value": "True", | ||
"type": "BOOL" | ||
}, | ||
{ | ||
"name": "VCPKG_BUILD_BENCHMARKING", | ||
"value": "True", | ||
"type": "BOOL" | ||
}, | ||
{ | ||
"name": "VCPKG_BUILD_FUZZING", | ||
"value": "True", | ||
"type": "BOOL" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "x64-Release", | ||
"generator": "Ninja", | ||
"configurationType": "RelWithDebInfo", | ||
"buildRoot": "${projectDir}\\out\\build\\${name}", | ||
"installRoot": "${projectDir}\\out\\install\\${name}", | ||
"cmakeCommandArgs": "", | ||
"buildCommandArgs": "", | ||
"ctestCommandArgs": "", | ||
"inheritEnvironments": [ "msvc_x64_x64" ], | ||
"variables": [ | ||
{ | ||
"name": "VCPKG_ARTIFACTS_DEVELOPMENT", | ||
"value": "True", | ||
"type": "BOOL" | ||
}, | ||
{ | ||
"name": "VCPKG_BUILD_TLS12_DOWNLOADER", | ||
"value": "True", | ||
"type": "BOOL" | ||
}, | ||
{ | ||
"name": "VCPKG_BUILD_BENCHMARKING", | ||
"value": "True", | ||
"type": "BOOL" | ||
}, | ||
{ | ||
"name": "VCPKG_BUILD_FUZZING", | ||
"value": "True", | ||
"type": "BOOL" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "x86-Debug", | ||
"generator": "Ninja", | ||
"configurationType": "Debug", | ||
"inheritEnvironments": [ "msvc_x86_x64" ], | ||
"buildRoot": "${projectDir}\\out\\build\\${name}", | ||
"installRoot": "${projectDir}\\out\\install\\${name}", | ||
"cmakeCommandArgs": "", | ||
"buildCommandArgs": "", | ||
"ctestCommandArgs": "", | ||
"variables": [ | ||
{ | ||
"name": "VCPKG_ARTIFACTS_DEVELOPMENT", | ||
"value": "True", | ||
"type": "BOOL" | ||
}, | ||
{ | ||
"name": "VCPKG_BUILD_TLS12_DOWNLOADER", | ||
"value": "True", | ||
"type": "BOOL" | ||
}, | ||
{ | ||
"name": "VCPKG_BUILD_BENCHMARKING", | ||
"value": "True", | ||
"type": "BOOL" | ||
}, | ||
{ | ||
"name": "VCPKG_BUILD_FUZZING", | ||
"value": "True", | ||
"type": "BOOL" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "x86-Release", | ||
"generator": "Ninja", | ||
"configurationType": "RelWithDebInfo", | ||
"buildRoot": "${projectDir}\\out\\build\\${name}", | ||
"installRoot": "${projectDir}\\out\\install\\${name}", | ||
"cmakeCommandArgs": "", | ||
"buildCommandArgs": "", | ||
"ctestCommandArgs": "", | ||
"inheritEnvironments": [ "msvc_x86_x64" ], | ||
"variables": [ | ||
{ | ||
"name": "VCPKG_ARTIFACTS_DEVELOPMENT", | ||
"value": "True", | ||
"type": "BOOL" | ||
}, | ||
{ | ||
"name": "VCPKG_BUILD_TLS12_DOWNLOADER", | ||
"value": "True", | ||
"type": "BOOL" | ||
}, | ||
{ | ||
"name": "VCPKG_BUILD_BENCHMARKING", | ||
"value": "True", | ||
"type": "BOOL" | ||
}, | ||
{ | ||
"name": "VCPKG_BUILD_FUZZING", | ||
"value": "True", | ||
"type": "BOOL" | ||
} | ||
] | ||
} | ||
] | ||
} |
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
@@ -1,14 +1,12 @@ | ||||
{ | ||||
"extends": "../common/tsconfig.json", | ||||
"compilerOptions": { | ||||
"experimentalDecorators": true, | ||||
"outDir": "./dist", | ||||
"rootDir": ".", | ||||
"types": [ | ||||
"node", | ||||
"mocha" | ||||
], | ||||
"inlineSourceMap": true, | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Was There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
No, but it's already specified in the common one here: vcpkg-tool/ce/common/tsconfig.json Line 11 in 88386bb
(I deduplicated any such settings I noticed) |
||||
] | ||||
}, | ||||
"include": [ | ||||
"./**/*.ts" | ||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is an imperfect output connection; if the packages.json is modified it won't be regenerated. I'm not sure what the right definition would be at this time; maybe just having a "stamp" file that we create after running the rush commands.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything related to the ecmascript dependency detection is imperfect unfortunately. This is "good enough" to do development work; unfortunately there doesn't seem to be a way to make it conclusively correct as long as Rush is involved.