2017-09-12 14:27:44 +02:00
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
2020-03-16 17:46:26 +01:00
|
|
|
"label": "Build",
|
2017-09-12 14:27:44 +02:00
|
|
|
"type": "shell",
|
|
|
|
"command": "go",
|
|
|
|
"group": "build",
|
|
|
|
"presentation": {
|
|
|
|
"echo": true,
|
|
|
|
"reveal": "always",
|
|
|
|
"focus": false,
|
|
|
|
"panel": "shared"
|
|
|
|
},
|
|
|
|
"linux": {
|
2020-10-12 20:44:01 +02:00
|
|
|
"args": ["build", "-o", "gitea", "${workspaceRoot}/main.go" ]
|
2017-09-12 14:27:44 +02:00
|
|
|
},
|
|
|
|
"osx": {
|
2020-10-12 20:44:01 +02:00
|
|
|
"args": ["build", "-o", "gitea", "${workspaceRoot}/main.go" ]
|
2017-09-12 14:27:44 +02:00
|
|
|
},
|
|
|
|
"windows": {
|
2020-10-12 20:44:01 +02:00
|
|
|
"args": ["build", "-o", "gitea.exe", "\"${workspaceRoot}\\main.go\""]
|
2017-09-12 14:27:44 +02:00
|
|
|
},
|
|
|
|
"problemMatcher": ["$go"]
|
|
|
|
},
|
|
|
|
{
|
2020-03-16 17:46:26 +01:00
|
|
|
"label": "Build (with SQLite3)",
|
2017-09-12 14:27:44 +02:00
|
|
|
"type": "shell",
|
|
|
|
"command": "go",
|
|
|
|
"group": "build",
|
|
|
|
"presentation": {
|
|
|
|
"echo": true,
|
|
|
|
"reveal": "always",
|
|
|
|
"focus": false,
|
|
|
|
"panel": "shared"
|
|
|
|
},
|
|
|
|
"linux": {
|
2020-10-12 20:44:01 +02:00
|
|
|
"args": ["build", "-tags=\"sqlite sqlite_unlock_notify\"", "-o", "gitea", "${workspaceRoot}/main.go"]
|
2017-09-12 14:27:44 +02:00
|
|
|
},
|
|
|
|
"osx": {
|
2020-10-12 20:44:01 +02:00
|
|
|
"args": ["build", "-tags=\"sqlite sqlite_unlock_notify\"", "-o", "gitea", "${workspaceRoot}/main.go"]
|
2017-09-12 14:27:44 +02:00
|
|
|
},
|
|
|
|
"windows": {
|
2020-10-12 20:44:01 +02:00
|
|
|
"args": ["build", "-tags=\"sqlite sqlite_unlock_notify\"", "-o", "gitea.exe", "\"${workspaceRoot}\\main.go\""]
|
2017-09-12 14:27:44 +02:00
|
|
|
},
|
|
|
|
"problemMatcher": ["$go"]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|