Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
cb94e9e017
|
|||
0e8823bba1
|
|||
5fd785a826
|
|||
3ea721a4e7
|
|||
fdc5e97fc2 | |||
79dba02090
|
|||
b9663f82d3 |
@ -23,6 +23,7 @@ release:
|
||||
only:
|
||||
- release
|
||||
script:
|
||||
- zip GitlabReleaseTool.zip gitlabreleaseuploader.py deleterelease.py
|
||||
- python gitlabreleaseuploader.py -p $PRIVATE_TOKEN -i $CI_PROJECT_ID -u $CI_PROJECT_URL
|
||||
-f gitlabreleaseuploader.py -F info.json -T $CI_COMMIT_REF_NAME
|
||||
-f GitlabReleaseTool.zip -F info.json -T $CI_COMMIT_REF_NAME
|
||||
|
||||
|
21
LICENSE
Normal file
21
LICENSE
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2019 Wolfgang Hottgenroth
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
56
deleterelease.py
Normal file
56
deleterelease.py
Normal file
@ -0,0 +1,56 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
import requests
|
||||
import json
|
||||
import argparse
|
||||
import sys
|
||||
|
||||
|
||||
parser = argparse.ArgumentParser(description='Gitlab Release Deleter')
|
||||
parser.add_argument('--privateToken', '-p',
|
||||
help='Private token to access Gitlab', required=True)
|
||||
parser.add_argument('--projectId', '-i',
|
||||
help='ProjectID of the related project', required=True)
|
||||
parser.add_argument('--releaseTag', '-t',
|
||||
help='Tag of the release in the repo',
|
||||
required=True,
|
||||
default='')
|
||||
parser.add_argument('--instanceUrl', '-I',
|
||||
help='URL of your gitlab instance', required=False,
|
||||
default='https://gitlab.com')
|
||||
parser.add_argument('--verbose', '-v',
|
||||
help='verbose output',
|
||||
required=False,
|
||||
action='store_true',
|
||||
default=False)
|
||||
parser.add_argument('--caBundle', '-B',
|
||||
help='File with the CA certificates to trust', required=False,
|
||||
default='/etc/ssl/certs/ca-certificates.crt')
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
privateToken = args.privateToken
|
||||
projectId = args.projectId
|
||||
releaseTag = args.releaseTag
|
||||
instanceUrl = args.instanceUrl
|
||||
verbose = args.verbose
|
||||
caBundle = args.caBundle
|
||||
|
||||
# --- delete release
|
||||
deleteReleaseUrl = "%s/api/v4/projects/%s/releases/%s" % (instanceUrl, projectId, releaseTag)
|
||||
headers = {"PRIVATE-TOKEN": privateToken, "Content-Type": "application/json"}
|
||||
|
||||
if verbose:
|
||||
print("URL: %s" % deleteReleaseUrl)
|
||||
|
||||
deleteReleaseResult = requests.delete(deleteReleaseUrl, headers=headers, verify=caBundle)
|
||||
|
||||
if deleteReleaseResult.status_code != 200:
|
||||
print(deleteReleaseResult)
|
||||
print(deleteReleaseResult.text)
|
||||
raise Exception('Unable to delete release')
|
||||
|
||||
if verbose:
|
||||
print(deleteReleaseResult)
|
||||
print(deleteReleaseResult.text)
|
||||
print('Release successfully delete')
|
@ -42,6 +42,9 @@ parser.add_argument('--releaseInfoFile', '-F',
|
||||
parser.add_argument('--instanceUrl', '-I',
|
||||
help='URL of your gitlab instance', required=False,
|
||||
default='https://gitlab.com')
|
||||
parser.add_argument('--caBundle', '-B',
|
||||
help='File with the CA certificates to trust', required=False,
|
||||
default='/etc/ssl/certs/ca-certificates.crt')
|
||||
parser.add_argument('--verbose', '-v',
|
||||
help='verbose output',
|
||||
required=False,
|
||||
@ -60,6 +63,7 @@ releaseDescription = args.description
|
||||
instanceUrl = args.instanceUrl
|
||||
createReleaseTag = args.createReleaseTag
|
||||
releaseInfoFilename = args.releaseInfoFile
|
||||
caBundle = args.caBundle
|
||||
verbose = args.verbose
|
||||
releaseInfo = {}
|
||||
|
||||
@ -94,7 +98,7 @@ uploadUrl = "%s/api/v4/projects/%s/uploads" % (instanceUrl, projectId)
|
||||
headers = {"PRIVATE-TOKEN": privateToken}
|
||||
files = {"file": open(fileToUpload, 'rb')}
|
||||
|
||||
uploadResult = requests.post(uploadUrl, files=files, headers=headers)
|
||||
uploadResult = requests.post(uploadUrl, files=files, headers=headers, verify=caBundle)
|
||||
|
||||
if uploadResult.status_code != 201:
|
||||
print(uploadResult)
|
||||
@ -124,7 +128,8 @@ if createReleaseTag:
|
||||
|
||||
createReleaseTagResult = requests.post(createReleaseTagUrl,
|
||||
headers=headers,
|
||||
data=json.dumps(payloadCreateReleaseTag))
|
||||
data=json.dumps(payloadCreateReleaseTag),
|
||||
verify=caBundle)
|
||||
|
||||
if createReleaseTagResult.status_code != 201:
|
||||
print(createReleaseTagResult)
|
||||
@ -157,7 +162,8 @@ payloadCreateRelease = {
|
||||
}
|
||||
|
||||
createReleaseResult = requests.post(createReleaseUrl, headers=headers,
|
||||
data=json.dumps(payloadCreateRelease))
|
||||
data=json.dumps(payloadCreateRelease),
|
||||
verify=caBundle)
|
||||
|
||||
if createReleaseResult.status_code != 201:
|
||||
print(createReleaseResult)
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"releaseTag": "v1.6",
|
||||
"releaseTag": "v1.8",
|
||||
"createReleaseTag": "true",
|
||||
"releaseName": "Seventh release of the uploader",
|
||||
"description": "Work on readme and change of CI script"
|
||||
"releaseName": "CA Bundle",
|
||||
"description": "Option to provide CA bundle file for ssl verification"
|
||||
}
|
||||
|
||||
|
10
readme.md
10
readme.md
@ -21,6 +21,7 @@ Gitlab CI scripts.
|
||||
[--createReleaseTag]
|
||||
[--description DESCRIPTION]
|
||||
[--releaseInfoFile RELEASEINFOFILE]
|
||||
[--caBundle FILE_WITH_CA_CERTIFICATES_TO_TRUST]
|
||||
[--instanceUrl INSTANCEURL] [--verbose]
|
||||
|
||||
Gitlab Release Uploader
|
||||
@ -49,6 +50,7 @@ Gitlab CI scripts.
|
||||
tag, create release tag, description
|
||||
--instanceUrl INSTANCEURL, -I INSTANCEURL
|
||||
URL of your gitlab instance
|
||||
--caBundle FILE_WITH_CA_CERTIFICATES_TO_TRUST, -B FILE_WITH_CA_CERTIFICATES_TO_TRUST
|
||||
--verbose, -v verbose output
|
||||
wn@tron:~/workspace-python/gitlabreleaseuploader [master ≡]$
|
||||
|
||||
@ -71,7 +73,7 @@ Release Info File:
|
||||
"releaseTag": "v1.5",
|
||||
"createReleaseTag": "true",
|
||||
"releaseName": "Sixth release of the uploader",
|
||||
"description": "Now with CI script and automatic release upload (he, eat your own dogfood)"
|
||||
"description": "Now with CI script and automatic release upload (hey, eat your own dogfood)"
|
||||
}
|
||||
|
||||
Command:
|
||||
@ -95,9 +97,11 @@ Then add the following stage into your CI script:
|
||||
- gitlabreleaseuploader.py -p $PRIVATE_TOKEN -i $CI_PROJECT_ID -u $CI_PROJECT_URL
|
||||
-f gitlabreleaseuploader.py -F info.json -T $CI_COMMIT_REF_NAME
|
||||
|
||||
(Note, please: this stage definition is for a docker worker. It uses my ``base-build-env`` image, which already contains the
|
||||
Note, please: this stage definition is for a docker worker. It uses my ``base-build-env`` image, which already contains the
|
||||
uploader script. However, it is no problem to use the uploader script also in different environments. It just depends on the
|
||||
``Requests`` package.)
|
||||
``Requests`` package.
|
||||
|
||||
Note too, please: this job is releasing the ``gitlabreleaseuploader.py`` script itself, so you see the name of the script twice in the CI script. Don't be confused, the option ``-f`` gets the file to be released.
|
||||
|
||||
Most information are taken from CI builtin variables, the tag name, release name and release description should be stored in
|
||||
the release info file (here: ``info.json``), which is under version control.
|
||||
|
Reference in New Issue
Block a user