mirror of
https://github.com/rehlds/testdemos.git
synced 2024-12-26 14:45:53 +03:00
670c0e714f
* init * add gitignore * Use `debian:stable` tag * Make compability with `s1lentq/testdemos:latest` image * Clear APT cache * Use `wine32` only and remove `wineboot` command * remove any `*64.dll` and add ability to remove all `*.bsp` * add CI * Add `CODEOWNERS`
37 lines
901 B
JSON
37 lines
901 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build image",
|
|
"type": "docker-build",
|
|
"dockerBuild": {
|
|
"context": "${workspaceFolder}",
|
|
"tag": "testdemos:latest"
|
|
},
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"label": "Run container",
|
|
"command": "docker run --rm -ti testdemos:latest",
|
|
"dependsOn": [
|
|
"Build image"
|
|
]
|
|
}
|
|
],
|
|
"inputs": [
|
|
{
|
|
"type": "pickString",
|
|
"id": "betaBranch",
|
|
"default": "public",
|
|
"description": "Select DepotsDownloader branch.",
|
|
"options": [
|
|
"public",
|
|
"steam_legacy"
|
|
]
|
|
}
|
|
]
|
|
} |