6 - 'onosfw-verify-{stream}'
7 - 'onosfw-daily-{stream}'
8 - 'onosfw-build-{stream}'
10 # only master branch is enabled at the moment to keep no of jobs sane
16 # branch: 'stable/brahmaputra'
17 # gs-pathname: '/brahmaputra'
21 ########################
23 ########################
25 name: 'onosfw-verify-{stream}'
32 - 'opnfv-build-ubuntu-defaults'
36 credentials-id: '{ssh-credentials}'
37 refspec: '$GERRIT_REFSPEC'
38 choosing-strategy: 'gerrit'
43 - patchset-created-event:
44 exclude-drafts: 'false'
45 exclude-trivial-rebase: 'false'
46 exclude-no-code-change: 'false'
47 - draft-published-event
48 - comment-added-contains-event:
49 comment-contains-value: 'recheck'
50 - comment-added-contains-event:
51 comment-contains-value: 'reverify'
53 - project-compare-type: 'ANT'
54 project-pattern: '{project}'
56 - branch-compare-type: 'ANT'
57 branch-pattern: '**/{branch}'
60 pattern: 'docs/**|.gitignore'
63 - 'builder-onosfw-helloworld'
66 name: 'onosfw-daily-{stream}'
71 - 'opnfv-build-ubuntu-defaults'
75 credentials-id: '{ssh-credentials}'
84 - project: 'onosfw-build-{stream}'
89 name: 'onosfw-build-{stream}'
94 - 'opnfv-build-ubuntu-defaults'
97 default: '$GS_BASE{gs-pathname}'
98 description: "Directory where the build artifact will be located upon the completion of the build."
102 credentials-id: '{ssh-credentials}'
107 - 'builder-onosfw-helloworld'
109 ########################
111 ########################
113 name: 'builder-onosfw-build'
121 # log info to console
122 echo "Starting the build of $PROJECT. This could take some time..."
123 echo "--------------------------------------------------------"
126 # create the cache directory if it doesn't exist
127 [[ -d $CACHE_DIRECTORY ]] || mkdir -p $CACHE_DIRECTORY
128 [[ -d $BUILD_DIRECTORY ]] || mkdir -p $BUILD_DIRECTORY
130 # set OPNFV_ARTIFACT_VERSION
131 export OPNFV_ARTIFACT_VERSION=$(date -u +"%Y-%m-%d_%H-%M-%S")
135 ./ci/build.sh $BUILD_DIRECTORY/
137 # list the build artifacts
138 ls -al $BUILD_DIRECTORY
140 # save information regarding artifact into file
142 echo "OPNFV_ARTIFACT_VERSION=$OPNFV_ARTIFACT_VERSION"
143 echo "OPNFV_GIT_URL=$(git config --get remote.origin.url)"
144 echo "OPNFV_GIT_SHA1=$(git rev-parse HEAD)"
145 echo "OPNFV_ARTIFACT_URL=$GS_URL/opnfv-$OPNFV_ARTIFACT_VERSION.iso"
146 echo "OPNFV_ARTIFACT_MD5SUM=$(md5sum $BUILD_DIRECTORY/onosfw.iso | cut -d' ' -f1)"
147 echo "OPNFV_BUILD_URL=$BUILD_URL"
148 ) > $BUILD_DIRECTORY/opnfv.properties
150 echo "--------------------------------------------------------"
155 name: 'builder-onosfw-upload-artifact'
163 # log info to console
164 echo "Uploading the $INSTALLER artifact. This could take some time..."
165 echo "--------------------------------------------------------"
168 # source the opnfv.properties to get ARTIFACT_VERSION
169 source $BUILD_DIRECTORY/opnfv.properties
171 # upload artifact and additional files to google storage
172 gsutil cp $BUILD_DIRECTORY/onosfw.iso gs://$GS_URL/opnfv-$OPNFV_ARTIFACT_VERSION.iso > gsutil.iso.log 2>&1
173 gsutil cp $BUILD_DIRECTORY/opnfv.properties gs://$GS_URL/opnfv-$OPNFV_ARTIFACT_VERSION.properties > gsutil.properties.log 2>&1
174 gsutil cp $BUILD_DIRECTORY/opnfv.properties gs://$GS_URL/latest.properties > gsutil.latest.log 2>&1
177 echo "--------------------------------------------------------"
179 echo "Artifact is available as http://$GS_URL/opnfv-$OPNFV_ARTIFACT_VERSION.iso"
183 name: 'builder-onosfw-helloworld'