Updated tasks even more
This commit is contained in:
parent
3bae2b646a
commit
b39a0253d1
57
.vscode/tasks.json
vendored
57
.vscode/tasks.json
vendored
@ -5,6 +5,7 @@
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Clean up",
|
||||
"detail": "Remove all .pyco and and __pycache__ in the whole project",
|
||||
"type": "shell",
|
||||
"windows": {
|
||||
"command": "./.vscode/tasks/windows/cleanup.bat"
|
||||
@ -16,6 +17,7 @@
|
||||
},
|
||||
{
|
||||
"label": "Clean up everything",
|
||||
"detail": "Remove all .pyco and __pycache__ as well as virtual envs, build and dist dirs",
|
||||
"type": "shell",
|
||||
"windows": {
|
||||
"command": "./.vscode/tasks/windows/cleanup_everything.bat"
|
||||
@ -23,36 +25,46 @@
|
||||
"linux": {
|
||||
"command": "bash ./.vscode/tasks/linux/cleanup_everything.sh"
|
||||
},
|
||||
"problemMatcher": []
|
||||
"problemMatcher": [],
|
||||
"dependsOn": ["Clean up"]
|
||||
},
|
||||
{
|
||||
"label": "Build",
|
||||
"label": "Run (Python)",
|
||||
"detail": "Copy source code from 'src' dir into 'testpython' and start main.py within venv",
|
||||
"type": "shell",
|
||||
"windows": {
|
||||
"command": "./.vscode/tasks/windows/build.bat"
|
||||
"command": "./.vscode/tasks/windows/run_python.bat"
|
||||
},
|
||||
"linux": {
|
||||
"command": "bash ./.vscode/tasks/linux/build.sh"
|
||||
"command": "bash ./.vscode/tasks/linux/run_python.sh"
|
||||
},
|
||||
"group": {
|
||||
"kind": "test",
|
||||
"isDefault": true
|
||||
},
|
||||
"problemMatcher": [],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
"dependsOn": ["Clean up", "Install requirements"]
|
||||
},
|
||||
{
|
||||
"label": "Test",
|
||||
"label": "Run (Binary)",
|
||||
"detail": "Copy compiled binaries from 'dest/%os%' dir into 'testbinary/%os%' and start it",
|
||||
"type": "shell",
|
||||
"windows": {
|
||||
"command": "./.vscode/tasks/windows/test.bat"
|
||||
"command": "./.vscode/tasks/windows/run_binary.bat"
|
||||
},
|
||||
"linux": {
|
||||
"command": "bash ./.vscode/tasks/linux/test.sh"
|
||||
"command": "bash ./.vscode/tasks/linux/run_binary.sh"
|
||||
},
|
||||
"problemMatcher": []
|
||||
"group": {
|
||||
"kind": "test",
|
||||
"isDefault": false
|
||||
},
|
||||
"problemMatcher": [],
|
||||
"dependsOn": ["Build"]
|
||||
},
|
||||
{
|
||||
"label": "Configure Setup",
|
||||
"detail": "Configure IF setup file on Windows and .deb package on Linux",
|
||||
"type": "shell",
|
||||
"windows": {
|
||||
"command": "./.vscode/tasks/windows/configure_setup.bat"
|
||||
@ -60,10 +72,12 @@
|
||||
"linux": {
|
||||
"command": "echo \"Not implemented\""
|
||||
},
|
||||
"problemMatcher": []
|
||||
"problemMatcher": [],
|
||||
"dependsOn": ["Clean up"]
|
||||
},
|
||||
{
|
||||
"label": "Install build requirements",
|
||||
"detail": "Create buildenv and install the modules to run Pyinstaller's build",
|
||||
"type": "shell",
|
||||
"windows": {
|
||||
"command": "./.vscode/tasks/windows/install_build_requirements.bat"
|
||||
@ -75,6 +89,7 @@
|
||||
},
|
||||
{
|
||||
"label": "Install requirements",
|
||||
"detail": "Create venv and install the modules to run 'src/main.py'",
|
||||
"type": "shell",
|
||||
"windows": {
|
||||
"command": "./.vscode/tasks/windows/install_requirements.bat"
|
||||
@ -85,15 +100,21 @@
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Run",
|
||||
"label": "Build",
|
||||
"detail": "Configure .spec and run Pyinstaller",
|
||||
"type": "shell",
|
||||
"windows": {
|
||||
"command": "./.vscode/tasks/windows/run.bat"
|
||||
"command": "./.vscode/tasks/windows/build.bat"
|
||||
},
|
||||
"linux": {
|
||||
"command": "bash ./.vscode/tasks/linux/run.sh"
|
||||
"command": "bash ./.vscode/tasks/linux/build.sh"
|
||||
},
|
||||
"problemMatcher": []
|
||||
}
|
||||
"problemMatcher": [],
|
||||
"dependsOn": ["Clean up", "Install build requirements"],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
},
|
||||
]
|
||||
}
|
3
.vscode/tasks/linux/cleanup_everything.sh
vendored
3
.vscode/tasks/linux/cleanup_everything.sh
vendored
@ -1,8 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
python3 -Bc "import pathlib; [p.unlink() for p in pathlib.Path('.').rglob('*.py[co]')]"
|
||||
python3 -Bc "import pathlib; [p.rmdir() for p in pathlib.Path('.').rglob('__pycache__')]"
|
||||
|
||||
rm -rf build/linux/*
|
||||
rm -rf build/windows/*
|
||||
|
||||
|
3
.vscode/tasks/linux/run.sh
vendored
3
.vscode/tasks/linux/run.sh
vendored
@ -1,3 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
source venv/bin/activate && bash .vscode/tasks/linux/cleanup.sh && cd ./src && python ./main.py && deactivate
|
12
.vscode/tasks/linux/run_binary.sh
vendored
Normal file
12
.vscode/tasks/linux/run_binary.sh
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
rm -rf ./testbinary/linux
|
||||
mkdir ./testbinary/linux
|
||||
|
||||
cp -r ./dist/linux/* ./testbinary/linux/
|
||||
|
||||
cd "testbinary/linux/"
|
||||
|
||||
chmod +x "StardewSync"
|
||||
|
||||
"./StardewSync"
|
8
.vscode/tasks/linux/run_python.sh
vendored
Normal file
8
.vscode/tasks/linux/run_python.sh
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
|
||||
rm -rf testpython
|
||||
mkdir testpython
|
||||
|
||||
cp -r ./src/* ./testpython/
|
||||
|
||||
source venv/bin/activate && cd ./testpython && python ./main.py && deactivate
|
7
.vscode/tasks/linux/test.sh
vendored
7
.vscode/tasks/linux/test.sh
vendored
@ -1,7 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
cd "dist/linux/StardewSync"
|
||||
|
||||
chmod +x "StardewSync"
|
||||
|
||||
"./StardewSync"
|
3
.vscode/tasks/windows/cleanup_everything.bat
vendored
3
.vscode/tasks/windows/cleanup_everything.bat
vendored
@ -1,6 +1,3 @@
|
||||
python -Bc "import pathlib; [p.unlink() for p in pathlib.Path('.').rglob('*.py[co]')]"
|
||||
python -Bc "import pathlib; [p.rmdir() for p in pathlib.Path('.').rglob('__pycache__')]"
|
||||
|
||||
rmdir /S /Q build\linux\*
|
||||
rmdir /S /Q build\windows\*
|
||||
|
||||
|
1
.vscode/tasks/windows/run.bat
vendored
1
.vscode/tasks/windows/run.bat
vendored
@ -1 +0,0 @@
|
||||
.\.vscode\tasks\windows\cleanup.bat && venv\Scripts\activate && cd .\src && python .\main.py && deactivate
|
7
.vscode/tasks/windows/run_binary.bat
vendored
Normal file
7
.vscode/tasks/windows/run_binary.bat
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
rmdir /S /Q testbinary\windows
|
||||
mkdir testbinary\windows
|
||||
|
||||
xcopy ".\dist\windows\" ".\testbinary\windows\" /h /i /c /k /e /r /y
|
||||
|
||||
cd ".\testbinary\windows\StardewSync"
|
||||
".\StardewSync.exe"
|
6
.vscode/tasks/windows/run_python.bat
vendored
Normal file
6
.vscode/tasks/windows/run_python.bat
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
rmdir /S /Q testpython
|
||||
mkdir testpython
|
||||
|
||||
xcopy ".\src\" ".\testpython\" /h /i /c /k /e /r /y
|
||||
|
||||
venv\Scripts\activate && cd .\testpython && python .\main.py && deactivate
|
2
.vscode/tasks/windows/test.bat
vendored
2
.vscode/tasks/windows/test.bat
vendored
@ -1,2 +0,0 @@
|
||||
cd "dist\windows\StardewSync"
|
||||
".\StardewSync.exe"
|
Loading…
Reference in New Issue
Block a user