blob: 12ede6310dbf0c7c1430437b1f850e6698f7bb3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#!/bin/bash
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2018 Ericsson AB and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
set -o errexit
set -o nounset
set -o pipefail
# This script creates CompositionDefinedEvent
git clone https://gitlab.openci.io/openci/prototypes.git
cd prototypes/federated-cicd
virtualenv openci_publish
cd openci_publish
source bin/activate
python setup.py install
# generate event body
cat <<EOF > ./json_body.txt
{
"type": "$PUBLISH_EVENT_TYPE",
"id": "$(uuidgen)",
"time": "$(date -u +%Y-%m-%d_%H:%M:%SUTC)",
"buildUrl": "$BUILD_URL",
"branch": "master",
"origin": "$PUBLISH_EVENT_ORIGIN",
"compositionName": "$DEPLOY_SCENARIO",
"compositionMetadataUrl": "$SCENARIO_METADATA_LOCATION"
}
EOF
# temporary: until we can embed credentials plugin
ACTIVEMQ_USER="openci"
ACTIVEMQ_PASSWORD="openciP@ssw0rd"
openci_publish -H 129.192.69.55 -U ${ACTIVEMQ_USER} -p ${ACTIVEMQ_PASSWORD} -n openci.prototype -B ./json_body.txt
echo "Constructed $PUBLISH_EVENT_TYPE"
echo "--------------------------------------------"
cat ./json_body.txt
echo "--------------------------------------------"
deactivate
|