add linux / osx build scripts
This commit is contained in:
141
.vscode/tasks.json
vendored
141
.vscode/tasks.json
vendored
@@ -4,14 +4,32 @@
|
||||
{
|
||||
"label": "Build (Minfiyed)",
|
||||
"type": "shell",
|
||||
"command": "powershell",
|
||||
"args": [
|
||||
"-NoProfile",
|
||||
"-ExecutionPolicy",
|
||||
"Bypass",
|
||||
"-File",
|
||||
"${workspaceFolder}\\tools\\buildMini.ps1"
|
||||
],
|
||||
|
||||
"windows": {
|
||||
"command": "powershell",
|
||||
"args": [
|
||||
"-NoProfile",
|
||||
"-ExecutionPolicy",
|
||||
"Bypass",
|
||||
"-File",
|
||||
"${workspaceFolder}\\scripts\\buildMini.ps1"
|
||||
]
|
||||
},
|
||||
|
||||
"linux": {
|
||||
"command": "bash",
|
||||
"args": [
|
||||
"${workspaceFolder}/scripts/buildMini.sh"
|
||||
]
|
||||
},
|
||||
|
||||
"osx": {
|
||||
"command": "bash",
|
||||
"args": [
|
||||
"${workspaceFolder}/scripts/buildMini.sh"
|
||||
]
|
||||
},
|
||||
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
@@ -22,17 +40,36 @@
|
||||
},
|
||||
"problemMatcher": []
|
||||
},
|
||||
|
||||
{
|
||||
"label": "Build (Source)",
|
||||
"type": "shell",
|
||||
"command": "powershell",
|
||||
"args": [
|
||||
"-NoProfile",
|
||||
"-ExecutionPolicy",
|
||||
"Bypass",
|
||||
"-File",
|
||||
"${workspaceFolder}\\tools\\build.ps1"
|
||||
],
|
||||
|
||||
"windows": {
|
||||
"command": "powershell",
|
||||
"args": [
|
||||
"-NoProfile",
|
||||
"-ExecutionPolicy",
|
||||
"Bypass",
|
||||
"-File",
|
||||
"${workspaceFolder}\\scripts\\build.ps1"
|
||||
]
|
||||
},
|
||||
|
||||
"linux": {
|
||||
"command": "bash",
|
||||
"args": [
|
||||
"${workspaceFolder}/scripts/build.sh"
|
||||
]
|
||||
},
|
||||
|
||||
"osx": {
|
||||
"command": "bash",
|
||||
"args": [
|
||||
"${workspaceFolder}/scripts/build.sh"
|
||||
]
|
||||
},
|
||||
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
@@ -43,17 +80,36 @@
|
||||
},
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
|
||||
{
|
||||
"label": "Test (Minfiyed)",
|
||||
"type": "shell",
|
||||
"command": "powershell",
|
||||
"args": [
|
||||
"-NoProfile",
|
||||
"-ExecutionPolicy",
|
||||
"Bypass",
|
||||
"-File",
|
||||
"${workspaceFolder}\\tools\\buildMiniTest.ps1"
|
||||
],
|
||||
|
||||
"windows": {
|
||||
"command": "powershell",
|
||||
"args": [
|
||||
"-NoProfile",
|
||||
"-ExecutionPolicy",
|
||||
"Bypass",
|
||||
"-File",
|
||||
"${workspaceFolder}\\scripts\\buildMiniTest.ps1"
|
||||
]
|
||||
},
|
||||
|
||||
"linux": {
|
||||
"command": "bash",
|
||||
"args": [
|
||||
"${workspaceFolder}/scripts/buildMiniTest.sh"
|
||||
]
|
||||
},
|
||||
|
||||
"osx": {
|
||||
"command": "bash",
|
||||
"args": [
|
||||
"${workspaceFolder}/scripts/buildMiniTest.sh"
|
||||
]
|
||||
},
|
||||
|
||||
"group": {
|
||||
"kind": "test",
|
||||
"isDefault": true
|
||||
@@ -64,17 +120,36 @@
|
||||
},
|
||||
"problemMatcher": []
|
||||
},
|
||||
|
||||
{
|
||||
"label": "Test (Source)",
|
||||
"type": "shell",
|
||||
"command": "powershell",
|
||||
"args": [
|
||||
"-NoProfile",
|
||||
"-ExecutionPolicy",
|
||||
"Bypass",
|
||||
"-File",
|
||||
"${workspaceFolder}\\tools\\buildTest.ps1"
|
||||
],
|
||||
|
||||
"windows": {
|
||||
"command": "powershell",
|
||||
"args": [
|
||||
"-NoProfile",
|
||||
"-ExecutionPolicy",
|
||||
"Bypass",
|
||||
"-File",
|
||||
"${workspaceFolder}\\scripts\\buildTest.ps1"
|
||||
]
|
||||
},
|
||||
|
||||
"linux": {
|
||||
"command": "bash",
|
||||
"args": [
|
||||
"${workspaceFolder}/scripts/buildTest.sh"
|
||||
]
|
||||
},
|
||||
|
||||
"osx": {
|
||||
"command": "bash",
|
||||
"args": [
|
||||
"${workspaceFolder}/scripts/buildTest.sh"
|
||||
]
|
||||
},
|
||||
|
||||
"group": {
|
||||
"kind": "test",
|
||||
"isDefault": true
|
||||
|
||||
Reference in New Issue
Block a user