-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add squish-8.0.0-qt67x-linux64 #66
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -2,6 +2,7 @@ def main(ctx): | |||||||||
versions = [ | ||||||||||
'latest', | ||||||||||
'fedora', | ||||||||||
'qt67' | ||||||||||
] | ||||||||||
|
||||||||||
arches = [ | ||||||||||
|
@@ -25,6 +26,7 @@ def main(ctx): | |||||||||
'squishversion': { | ||||||||||
'latest': '7.1.1-qt64x-linux64', | ||||||||||
'fedora': '7.2.1-qt66x-linux64', | ||||||||||
'qt67' : '8.0.0-qt67x-linux64', | ||||||||||
Comment on lines
28
to
+29
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you can just update the version in fedora (client CI uses fedora build). This will create new
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is what I explicitly didn't want to do. I want to keep the current fedora image untouched. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This will create new tags There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. but then we can never recreate previous images .... feeö wrong to me ;-) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yeah, we cannot. squish/fedora/Dockerfile.amd64 Line 11 in 16cad0f
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. in other words - there is already no way to recreate an image .... There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we usually move on with the new updated versions but yeah, we cannot do patches to the old tags if we want to with the current setup. |
||||||||||
}, | ||||||||||
'description': 'Squish for ownCloud CI', | ||||||||||
's3secret': { | ||||||||||
|
@@ -41,6 +43,9 @@ def main(ctx): | |||||||||
else: | ||||||||||
config['path'] = '%s' % config['version'] | ||||||||||
|
||||||||||
if version == 'qt67': | ||||||||||
config['path'] = 'fedora' | ||||||||||
|
||||||||||
Comment on lines
+46
to
+48
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. then this might not be required |
||||||||||
config['tags'] = [config['version']] | ||||||||||
if config['version'] == 'latest': | ||||||||||
config['tags'].append('%s-%s' % (base_img_tag[config['version']][0], config['squishversion'][config['version']])) | ||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these are linux distros (
latest->ubuntu
but we are not using it because of #34)