mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
23 lines
480 B
Text
23 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"
|
||
|
}]
|
||
|
}
|