22 lines
462 B
YAML
22 lines
462 B
YAML
---
|
|
kind: pipeline
|
|
type: exec
|
|
name: default
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: run
|
|
commands:
|
|
- chmod +x kill_ui.sh
|
|
- ./kill_ui.sh
|
|
- cp ./*.py /home/tmfc/apps/whisper/
|
|
- cp ./requirements.txt /home/tmfc/apps/whisper/
|
|
- cd /home/tmfc/apps/whisper
|
|
- pip install -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple -r requirements.txt
|
|
- nohup python3 chyoso_toolkit_ui.py > output.log 2>&1 &
|
|
node:
|
|
tmfc_server: exec_runner
|
|
... |