mirror of
https://bitbucket.org/atlassian-docker/docker-atlassian-confluence-server.git
synced 2024-08-30 18:22:16 +00:00
174 lines
6.6 KiB
Django/Jinja
174 lines
6.6 KiB
Django/Jinja
---
|
|
# NOTE: This file is generated from `bitbucket-pipelines.yml.j2` via `pipelines-generator.py`:
|
|
#
|
|
# python3 pipelines-generator.py > bitbucket-pipelines.yml
|
|
|
|
image: atlassian/docker-release-maker:latest
|
|
definitions:
|
|
services:
|
|
docker:
|
|
memory: 4096
|
|
|
|
options:
|
|
size: 2x
|
|
|
|
pipelines:
|
|
|
|
branches:
|
|
######################################################################
|
|
# Master branch: Do full release for each image flavour
|
|
######################################################################
|
|
master:
|
|
- step:
|
|
name: Check if pipelines config is up-to-date...
|
|
script:
|
|
- python3 pipelines-generator.py > bitbucket-piplines.yml.expected && diff bitbucket-pipelines.yml bitbucket-piplines.yml.expected
|
|
|
|
- parallel:
|
|
|
|
{% for (name, pdata) in images.items() %}
|
|
{% for (jdkver, appdata) in pdata.items() %}
|
|
{% for offset in range(0, batches) %}
|
|
|
|
- step:
|
|
name: JDK {{ jdkver }} - Batch {{ offset + 1 }}
|
|
services:
|
|
- docker
|
|
script:
|
|
- git submodule update --init --recursive
|
|
- echo ${DOCKER_PASSWORD} | docker login --username ${DOCKER_USERNAME} --password-stdin
|
|
- >
|
|
python /usr/src/app/make-releases.py \
|
|
--update \
|
|
--start-version='{{ appdata.start_version }}' \
|
|
--end-version='{{ appdata.end_version }}' \
|
|
{% if appdata.default_release %}
|
|
--default-release \
|
|
{% endif %}
|
|
--dockerfile='{{ appdata.dockerfile }}' \
|
|
--dockerfile-buildargs='BASE_IMAGE={{ appdata.base_image }}' \
|
|
--dockerfile-version-arg='CONFLUENCE_VERSION' \
|
|
--mac-product-key='confluence' \
|
|
--tag-suffixes='{{ appdata.tag_suffixes|join(',') }}' \
|
|
--concurrent-builds='1' \
|
|
--job-offset='{{ offset }}' \
|
|
--jobs-total='{{ batches }}' \
|
|
--docker-repos='{{ appdata.docker_repos|join(',') }}' \
|
|
--push
|
|
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
- step:
|
|
name: Update README
|
|
image: python:3.7-alpine3.9
|
|
script:
|
|
- apk add --no-cache git
|
|
- git submodule update --init --recursive
|
|
- pip install -q requests
|
|
- export DOCKER_REPO='atlassian/confluence-server'
|
|
- python shared-components/image/push-readme.py
|
|
- export DOCKER_REPO='atlassian/confluence'
|
|
- python shared-components/image/push-readme.py
|
|
|
|
|
|
######################################################################
|
|
# All other branches & PRs; run unit tests & functional tests
|
|
# against latest app version
|
|
######################################################################
|
|
'**':
|
|
- step:
|
|
name: Check if pipelines config is up-to-date...
|
|
script:
|
|
- python3 pipelines-generator.py > bitbucket-piplines.yml.expected && diff bitbucket-pipelines.yml bitbucket-piplines.yml.expected
|
|
|
|
- parallel:
|
|
- step:
|
|
name: Run unit tests
|
|
image: python:3.7-alpine3.9
|
|
services:
|
|
- docker
|
|
script:
|
|
- apk add --no-cache git
|
|
- git submodule update --init --recursive
|
|
- pip install -q -r shared-components/tests/requirements.txt
|
|
- export PYTHONPATH=./shared-components/tests:$PYTHONPATH
|
|
- export DOCKERFILE='Dockerfile'
|
|
- export DOCKERFILE_VERSION_ARG='CONFLUENCE_VERSION'
|
|
- export MAC_PRODUCT_KEY='confluence'
|
|
- py.test -v tests/
|
|
- py.test -v shared-components/tests/
|
|
|
|
- step:
|
|
name: Run integration tests
|
|
services:
|
|
- docker
|
|
script:
|
|
- apk add --no-cache git docker-compose jq curl
|
|
- git submodule update --init --recursive
|
|
- export CONFLUENCE_VERSION=`curl -s https://marketplace.atlassian.com/rest/2/products/key/confluence/versions/latest | jq -r .name`
|
|
- docker build --build-arg CONFLUENCE_VERSION=${CONFLUENCE_VERSION} -t test-image .
|
|
- export IS_RELEASE=false
|
|
- /usr/src/app/post_build.sh test-image $IS_RELEASE
|
|
|
|
custom:
|
|
######################################################################
|
|
# Custom: Do full release for each image flavour
|
|
######################################################################
|
|
new-releases:
|
|
|
|
- parallel:
|
|
|
|
{% for (name, pdata) in images.items() %}
|
|
{% for (jdkver, appdata) in pdata.items() %}
|
|
{% for offset in range(0, batches) %}
|
|
|
|
- step:
|
|
name: JDK {{ jdkver }} - Batch {{ offset + 1 }}
|
|
services:
|
|
- docker
|
|
script:
|
|
- git submodule update --init --recursive
|
|
- echo ${DOCKER_PASSWORD} | docker login --username ${DOCKER_USERNAME} --password-stdin
|
|
- >
|
|
python /usr/src/app/make-releases.py \
|
|
--create \
|
|
--create-eap \
|
|
--start-version='{{ appdata.start_version }}' \
|
|
--end-version='{{ appdata.end_version }}' \
|
|
{% if appdata.default_release %}
|
|
--default-release \
|
|
{% endif %}
|
|
--dockerfile='{{ appdata.dockerfile }}' \
|
|
--dockerfile-buildargs='BASE_IMAGE={{ appdata.base_image }}' \
|
|
--dockerfile-version-arg='CONFLUENCE_VERSION' \
|
|
--mac-product-key='confluence' \
|
|
--tag-suffixes='{{ appdata.tag_suffixes|join(',') }}' \
|
|
--concurrent-builds='1' \
|
|
--job-offset='{{ offset }}' \
|
|
--jobs-total='{{ batches }}' \
|
|
--docker-repos='{{ appdata.docker_repos|join(',') }}' \
|
|
--push
|
|
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
custom-release:
|
|
- variables:
|
|
- name: CONFLUENCE_VERSION
|
|
- name: DOCKER_TAG
|
|
- step:
|
|
services:
|
|
- docker
|
|
script:
|
|
- git submodule update --init --recursive
|
|
- echo ${DOCKER_PASSWORD} | docker login --username ${DOCKER_USERNAME} --password-stdin
|
|
- >
|
|
docker build -t atlassian/confluence:${DOCKER_TAG}
|
|
--build-arg CONFLUENCE_VERSION=${CONFLUENCE_VERSION} .
|
|
- snyk auth $SNYK_TOKEN
|
|
- snyk container test atlassian/confluence:${DOCKER_TAG} --severity-threshold=high
|
|
- docker push atlassian/confluence:${DOCKER_TAG}
|