mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-21 13:55:51 +00:00
36 lines
1.2 KiB
YAML
36 lines
1.2 KiB
YAML
# This is an example Starter pipeline configuration
|
|
# Use a skeleton to build, test and deploy using manual and parallel steps
|
|
# -----
|
|
# You can specify a custom docker image from Docker Hub as your build environment.
|
|
|
|
image: atlassian/default-image:3
|
|
|
|
pipelines:
|
|
default:
|
|
- parallel:
|
|
- step:
|
|
name: 'Build and Test'
|
|
script:
|
|
- echo "Your build and test goes here..."
|
|
- step:
|
|
name: 'Lint'
|
|
script:
|
|
- echo "Your linting goes here..."
|
|
- step:
|
|
name: 'Security scan'
|
|
script:
|
|
- echo "Your security scan goes here..."
|
|
|
|
# The following deployment steps will be executed for each pipeline run. To configure your steps and conditionally deploy see https://support.atlassian.com/bitbucket-cloud/docs/configure-bitbucket-pipelinesyml/
|
|
- step:
|
|
name: 'Deployment to Staging'
|
|
deployment: staging
|
|
script:
|
|
- echo "Your deployment to staging script goes here..."
|
|
- step:
|
|
name: 'Deployment to Production'
|
|
deployment: production
|
|
trigger: 'manual'
|
|
script:
|
|
- echo "Your deployment to production script goes here..."
|