Reorder failed stages and improve build statuses
This commit is contained in:
parent
dda6023062
commit
34960c299c
1 changed files with 6 additions and 5 deletions
|
@ -7,11 +7,12 @@ class Gitlab::Seeder::Builds
|
|||
{ name: 'rspec:windows', stage: 'test', status: :success },
|
||||
{ name: 'rspec:windows', stage: 'test', status: :success },
|
||||
{ name: 'rspec:osx', stage: 'test', status_event: :success },
|
||||
{ name: 'spinach:linux', stage: 'test', status: :pending },
|
||||
{ name: 'spinach:osx', stage: 'test', status: :canceled },
|
||||
{ name: 'cucumber:linux', stage: 'test', status: :running },
|
||||
{ name: 'cucumber:osx', stage: 'test', status: :failed },
|
||||
{ name: 'staging', stage: 'deploy', environment: 'staging', status: :success },
|
||||
{ name: 'spinach:linux', stage: 'test', status: :success },
|
||||
{ name: 'spinach:osx', stage: 'test', status: :failed, allow_failure: true},
|
||||
{ name: 'env:alpha', stage: 'deploy', environment: 'alpha', status: :pending },
|
||||
{ name: 'env:beta', stage: 'deploy', environment: 'beta', status: :running },
|
||||
{ name: 'env:gamma', stage: 'deploy', environment: 'gamma', status: :canceled },
|
||||
{ name: 'staging', stage: 'deploy', environment: 'staging', status_event: :success },
|
||||
{ name: 'production', stage: 'deploy', environment: 'production', when: 'manual', status: :skipped },
|
||||
{ name: 'slack', stage: 'notify', when: 'manual', status: :created },
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue