mirror of
https://github.com/chatopera/cosin.git
synced 2025-06-29 07:11:38 +08:00
https://github.com/cskefu/cskefu/issues/830 dockerize set filters
This commit is contained in:
parent
306e06e5b6
commit
e54c4259b1
@ -6,7 +6,7 @@ version: 2.1
|
|||||||
# See: https://circleci.com/docs/configuration-reference/#jobs
|
# See: https://circleci.com/docs/configuration-reference/#jobs
|
||||||
jobs:
|
jobs:
|
||||||
# Below is the definition of your job to build and test your app, you can rename and customize it as you want.
|
# Below is the definition of your job to build and test your app, you can rename and customize it as you want.
|
||||||
package:
|
package-build-push:
|
||||||
# These next lines define a Docker executor: https://circleci.com/docs/executor-types/
|
# These next lines define a Docker executor: https://circleci.com/docs/executor-types/
|
||||||
# You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
|
# You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
|
||||||
# Be sure to update the Docker image tag below to openjdk version of your application.
|
# Be sure to update the Docker image tag below to openjdk version of your application.
|
||||||
@ -18,21 +18,17 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
# Checkout the code as the first step.
|
# Checkout the code as the first step.
|
||||||
- checkout
|
- checkout
|
||||||
# Use mvn clean and package as the standard maven build phase
|
|
||||||
- run:
|
|
||||||
name: Package
|
|
||||||
command: cd contact-center && ./admin/package.sh
|
|
||||||
|
|
||||||
publish:
|
|
||||||
docker:
|
|
||||||
- image: circleci/buildpack-deps:stretch
|
|
||||||
steps:
|
|
||||||
- setup_remote_docker
|
- setup_remote_docker
|
||||||
- run:
|
- run:
|
||||||
name: Publish Docker Image to Docker Hub
|
name: Login DockerHub
|
||||||
command: |
|
command: |
|
||||||
echo "$DOCKERHUB_USERPASS" | docker login -u "$DOCKERHUB_USERNAME" --password-stdin
|
echo "$DOCKERHUB_USERPASS" | docker login -u "$DOCKERHUB_USERNAME" --password-stdin
|
||||||
cd contact-center && ./admin/build.sh && ./admin/push.sh
|
- run:
|
||||||
|
name: Build Contact Center Docker Image
|
||||||
|
command: cd $CIRCLE_WORKING_DIRECTORY/contact-center && ./admin/build.sh
|
||||||
|
- run:
|
||||||
|
name: Push Contact Center Docker Image to DockerHub
|
||||||
|
command: cd $CIRCLE_WORKING_DIRECTORY/contact-center && ./admin/push.sh
|
||||||
|
|
||||||
# Invoke jobs via workflows
|
# Invoke jobs via workflows
|
||||||
# See: https://circleci.com/docs/configuration-reference/#workflows
|
# See: https://circleci.com/docs/configuration-reference/#workflows
|
||||||
@ -40,5 +36,7 @@ workflows:
|
|||||||
dockerize: # This is the name of the workflow, feel free to change it to better match your workflow.
|
dockerize: # This is the name of the workflow, feel free to change it to better match your workflow.
|
||||||
# Inside the workflow, you define the jobs you want to run.
|
# Inside the workflow, you define the jobs you want to run.
|
||||||
jobs:
|
jobs:
|
||||||
- package
|
- package-build-push:
|
||||||
- publish
|
filters:
|
||||||
|
branches:
|
||||||
|
only: develop
|
@ -19,6 +19,8 @@ TIMESTAMP=`date "+%Y%m%d.%H%M%S"`
|
|||||||
PACKAGE_VERSION=`git rev-parse --short HEAD`
|
PACKAGE_VERSION=`git rev-parse --short HEAD`
|
||||||
APPLICATION_CUSTOMER_ENTITY=${APPLICATION_CUSTOMER_ENTITY:-"OpenSource Community"}
|
APPLICATION_CUSTOMER_ENTITY=${APPLICATION_CUSTOMER_ENTITY:-"OpenSource Community"}
|
||||||
|
|
||||||
|
$baseDir/package.sh
|
||||||
|
|
||||||
if [ ! $? -eq 0 ]; then
|
if [ ! $? -eq 0 ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user