-
Notifications
You must be signed in to change notification settings - Fork 1
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
Remove DAX plugin #163
Remove DAX plugin #163
Conversation
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.
LGTM
1aa5f56
to
6c913af
Compare
Lots of tests are failing. Issue with Rocky images in GitHub actionsThe following tests are failing with this issue:
Issue with latest version of moleculeThe following tests are failing due to molecule / ansible not finding roles and playbooks that are part of this collection:
There are various issues related to this:
And there was a PR merged recently that may have introduced this issue |
We no longer run into the Rocky9 issue if we run CI jobs on Ubuntu<24. And the issue with molecule / ansible not finding the roles is fixed by explicitly setting |
"xnatdev/container-service", | ||
"xnatx/xnatx-batch-launch-plugin", | ||
"VUIIS/dax", |
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.
I moved these to the bottom as they're no longer in the default list of plugins (they're only used in testing with molecule)
@@ -17,7 +17,7 @@ concurrency: | |||
|
|||
jobs: | |||
molecule-docker: | |||
runs-on: ubuntu-latest | |||
runs-on: ubuntu-22.04 |
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.
we run into errors running sudo commands on Rocky 9 containers if we use ubuntu-latest
@@ -46,7 +46,7 @@ | |||
"VUIIS-dax": { | |||
defaultRegistryUrlTemplate: "https://api.github.com/repos/VUIIS/dax/contents/misc/xnat-plugins", | |||
transformTemplates: [ | |||
'{"releases": $.{"version": $join(["v", $match(name, /(\\d+\\.)?(\\d+\\.)?(\\*|\\d+)/ ).match ])}}', | |||
'{"releases": $.{"version": $match(name, /(\\d+\\.)?(\\d+\\.)?(\\*|\\d+)/ ).match }}', |
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.
removing the v
in the version name (i.e. 1.4.2
rather than v1.4.1
) to match the format of currentValue
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.
👍
Fixes #95