mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
22 lines
480 B
Text
22 lines
480 B
Text
{
|
|
"tempDir": true,
|
|
"steps": [{
|
|
"args": "compile --allow-net --cert ../RootCA.pem cafile_ts_fetch.ts",
|
|
"cwd": "cert",
|
|
"output": "[WILDCARD]"
|
|
}, {
|
|
"if": "windows",
|
|
"commandName": "./cafile_ts_fetch.exe",
|
|
"cwd": "cert",
|
|
"args": [],
|
|
"flaky": true,
|
|
"output": "[WILDCARD]\nHello\n"
|
|
}, {
|
|
"if": "unix",
|
|
"commandName": "./cafile_ts_fetch",
|
|
"cwd": "cert",
|
|
"args": [],
|
|
"flaky": true,
|
|
"output": "[WILDCARD]\nHello\n"
|
|
}]
|
|
}
|