PublicProject/.onedev-buildspec.yml

19 lines
360 B
YAML
Raw Normal View History

2024-11-17 13:43:52 +00:00
version: 37
jobs:
- name: FirstPipeline
steps:
- !CommandStep
name: whoami
runInContainer: true
image: ubuntu:latest
interpreter: !ShellInterpreter
shell: bash
commands: |
whoami
useTTY: true
condition: ALL_PREVIOUS_STEPS_WERE_SUCCESSFUL
retryCondition: never
maxRetries: 3
retryDelay: 30
timeout: 14400