test-ci/.woodpecker.yml

14 lines
381 B
YAML
Raw Permalink Normal View History

2023-11-28 23:48:56 +00:00
steps:
2024-06-20 08:18:04 +00:00
"train":
image: nvcr.io/nvidia/tensorflow:23.10-tf2-py3
2023-01-17 15:51:35 +00:00
commands:
2024-06-24 12:20:44 +00:00
- echo "starting python script sd "
2024-06-20 08:18:04 +00:00
- python run.py
"compress and upload":
image: alpine:3
2023-11-28 23:48:56 +00:00
commands:
2024-06-20 08:18:04 +00:00
- apk --no-cache add zip curl
- zip mymodel.zip mymodel.keras
- curl -F fileUpload=@mymodel.zip https://share.storage.sandbox.iuk.hdm-stuttgart.de/upload
2023-01-18 09:21:16 +00:00