From 8e3cbdc423c7cb8f944e704689729e396b9daa27 Mon Sep 17 00:00:00 2001 From: Isaac Johnson Date: Sun, 17 Nov 2024 13:43:52 +0000 Subject: [PATCH] Add .onedev-buildspec.yml --- .onedev-buildspec.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .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