commit 8e3cbdc423c7cb8f944e704689729e396b9daa27 Author: Isaac Johnson Date: Sun Nov 17 13:43:52 2024 +0000 Add .onedev-buildspec.yml diff --git a/.onedev-buildspec.yml b/.onedev-buildspec.yml new file mode 100644 index 0000000..18d581e --- /dev/null +++ b/.onedev-buildspec.yml @@ -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