Add audit lab and pipelines
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
image: atlassian/default-image:3
|
||||
|
||||
pipelines:
|
||||
default:
|
||||
- parallel:
|
||||
- step:
|
||||
name: Build and Test
|
||||
script:
|
||||
- IMAGE_NAME=$BITBUCKET_REPO_SLUG
|
||||
- docker build . --file Dockerfile --tag ${IMAGE_NAME}
|
||||
services:
|
||||
- docker
|
||||
caches:
|
||||
- docker
|
||||
- step:
|
||||
name: Lint the Dockerfile
|
||||
image: hadolint/hadolint:latest-debian
|
||||
script:
|
||||
- hadolint Dockerfile
|
||||
branches:
|
||||
master:
|
||||
- step:
|
||||
name: Build and Test
|
||||
script:
|
||||
- IMAGE_NAME=$BITBUCKET_REPO_SLUG
|
||||
- docker build . --file Dockerfile --tag ${IMAGE_NAME}
|
||||
- docker save ${IMAGE_NAME} --output "${IMAGE_NAME}.tar"
|
||||
services:
|
||||
- docker
|
||||
caches:
|
||||
- docker
|
||||
artifacts:
|
||||
- "*.tar"
|
||||
- step:
|
||||
name: Deploy to Production
|
||||
deployment: Production
|
||||
script:
|
||||
- echo ${DOCKERHUB_PASSWORD} | docker login --username "$DOCKERHUB_USERNAME" --password-stdin
|
||||
- IMAGE_NAME=$BITBUCKET_REPO_SLUG
|
||||
- docker load --input "${IMAGE_NAME}.tar"
|
||||
- VERSION="prod-0.1.${BITBUCKET_BUILD_NUMBER}"
|
||||
- IMAGE=${DOCKERHUB_NAMESPACE}/${IMAGE_NAME}
|
||||
- docker tag "${IMAGE_NAME}" "${IMAGE}:${VERSION}"
|
||||
- docker push "${IMAGE}:${VERSION}"
|
||||
services:
|
||||
- docker
|
||||
@@ -0,0 +1,23 @@
|
||||
|
||||
pipelines:
|
||||
default:
|
||||
- parallel:
|
||||
- step:
|
||||
name: Test
|
||||
runs-on:
|
||||
- 'self.hosted'
|
||||
- 'my.custom.label'
|
||||
caches:
|
||||
- pip
|
||||
script:
|
||||
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
||||
- pip install pytest
|
||||
- pytest -v tests/* --junitxml=test-reports/report.xml
|
||||
- step:
|
||||
name: Lint code
|
||||
runs-on:
|
||||
- 'self.hosted'
|
||||
- 'my.custom.label'
|
||||
script:
|
||||
- pip install flake8
|
||||
- flake8 . --extend-exclude=dist,build --show-source --statistics
|
||||
@@ -0,0 +1,55 @@
|
||||
|
||||
pipelines:
|
||||
default:
|
||||
- parallel:
|
||||
- step:
|
||||
name: Build and Test
|
||||
caches:
|
||||
- node
|
||||
script:
|
||||
- npm install
|
||||
- npm test
|
||||
- step:
|
||||
name: Lint the node package
|
||||
script:
|
||||
- npm install eslint
|
||||
- npx eslint src
|
||||
caches:
|
||||
- node
|
||||
branches:
|
||||
master:
|
||||
- parallel:
|
||||
- step:
|
||||
name: Build and Test
|
||||
caches:
|
||||
- node
|
||||
script:
|
||||
- npm install
|
||||
- npm test
|
||||
- npm run build
|
||||
artifacts:
|
||||
- build/**
|
||||
- step:
|
||||
name: Security Scan
|
||||
script:
|
||||
- pipe: atlassian/git-secrets-scan:0.5.1
|
||||
- step:
|
||||
name: Deploy to Production
|
||||
deployment: Production
|
||||
trigger: manual
|
||||
clone:
|
||||
enabled: false
|
||||
script:
|
||||
- pipe: atlassian/aws-s3-deploy:1.1.0
|
||||
variables:
|
||||
AWS_ACCESS_KEY_ID: $AWS_ACCESS_KEY_ID
|
||||
AWS_SECRET_ACCESS_KEY: $AWS_SECRET_ACCESS_KEY
|
||||
AWS_DEFAULT_REGION: $AWS_DEFAULT_REGION
|
||||
S3_BUCKET: 'my-bucket-name'
|
||||
LOCAL_PATH: 'build'
|
||||
- pipe: atlassian/aws-cloudfront-invalidate:0.6.0
|
||||
variables:
|
||||
AWS_ACCESS_KEY_ID: $AWS_ACCESS_KEY_ID
|
||||
AWS_SECRET_ACCESS_KEY: $AWS_SECRET_ACCESS_KEY
|
||||
AWS_DEFAULT_REGION: $AWS_DEFAULT_REGION
|
||||
DISTRIBUTION_ID: '123xyz'
|
||||
@@ -0,0 +1,14 @@
|
||||
image: ruby:2.7
|
||||
|
||||
pipelines:
|
||||
default:
|
||||
- parallel:
|
||||
- step:
|
||||
name: Test
|
||||
script:
|
||||
- bundle install
|
||||
- bundle exec rake
|
||||
- step:
|
||||
name: Lint code
|
||||
script:
|
||||
- ruby -wc **/*.rb
|
||||
Reference in New Issue
Block a user