Add in the basic bamboo.yml

This commit is contained in:
Bree Dodd
2023-09-15 12:20:18 -06:00
parent d06e69b75d
commit 2bead72366
2 changed files with 32 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
source_files:
- repository_slug: NEW/ROCKET
path: bamboo/bootstrap/source_files/bamboo/bamboo.yml
@@ -0,0 +1,29 @@
---
version: 2
variables:
global_variable: global_variable_value
plan_variable_override: plan_variable_overrid
plan:
project-key: NEW
key: ROCKET
name: Build the rockets
# List of plan's stages and jobs
stages:
- Build the rocket stage:
- Build
#Job definition
Build:
tasks:
- script:
- mkdir -p falcon/red
- echo wings > falcon/red/wings
- sleep 1
- echo 'Built it'
# Job's artifacts. Artifacts are shared by default.
artifacts:
- name: Red rocket built
pattern: falcon/red/wings