Add in the basic bamboo.yml
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user