Add .onedev-buildspec.yml

This commit is contained in:
Isaac Johnson 2024-11-17 13:43:52 +00:00
commit 8e3cbdc423
1 changed files with 18 additions and 0 deletions

18
.onedev-buildspec.yml Normal file
View File

@ -0,0 +1,18 @@
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