-
Notifications
You must be signed in to change notification settings - Fork 40
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: Enable Nvidia driver builds for v535 #122
Changes from all commits
84086ba
5436932
506cf8f
a3cabb0
8a65dec
eddc6c0
b866d12
182798f
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 |
---|---|---|
|
@@ -20,18 +20,12 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
major_version: [37, 38] | ||
driver_version: [520, 525, 530, 470] | ||
driver_version: [470, 530, 535] | ||
exclude: | ||
- driver_version: 525 | ||
major_version: 37 | ||
- driver_version: 525 | ||
major_version: 38 | ||
- driver_version: 520 | ||
major_version: 37 | ||
- driver_version: 520 | ||
major_version: 38 | ||
- driver_version: 470 | ||
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. Exclude builds of 37 with driver version 530 here
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. If you still wants some legacy in your version you can keep the 520 driver on fedora 37 cause it's the base driver so it will always be possible to build it. However don't enable it on F38 cause the driver doesn't exists. 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. Changes made in 182798f I don't think we need to worry about enabling an older driver version in this PR - this was mainly just getting the new ones to build. I was hoping this would be a non-breaking update, but it turns out it broke on it's own. 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. Sure that's fine to keep the latest only. I was just saying this so you know what's possible to do or not in the current situation it might help understanding for the future so that kind of issue won't happen any more. |
||
major_version: 38 | ||
- driver_version: 530 | ||
major_version: 37 | ||
steps: | ||
# Checkout push-to-registry action GitHub repository | ||
- name: Checkout Push to Registry action | ||
|
@@ -182,34 +176,25 @@ jobs: | |
matrix: | ||
image_name: [silverblue, kinoite, vauxite, sericea, base, lxqt, mate] | ||
major_version: [37, 38] | ||
driver_version: [520, 525, 530, 470] | ||
driver_version: [470, 530, 535] | ||
include: | ||
# - major_version: 36 | ||
# is_latest_version: false | ||
# is_stable_version: true | ||
- major_version: 37 | ||
is_latest_version: false | ||
is_stable_version: true | ||
- major_version: 38 | ||
is_latest_version: true | ||
is_stable_version: true | ||
- driver_version: 530 | ||
- driver_version: 535 | ||
is_latest_driver: true | ||
exclude: | ||
# There is no Fedora 37 version of sericea | ||
# When F38 is added, sericea will automatically be built too | ||
- image_name: sericea | ||
major_version: 37 | ||
- driver_version: 525 | ||
major_version: 37 | ||
- driver_version: 525 | ||
major_version: 38 | ||
- driver_version: 520 | ||
major_version: 37 | ||
- driver_version: 520 | ||
major_version: 38 | ||
- driver_version: 470 | ||
major_version: 38 | ||
- driver_version: 530 | ||
major_version: 37 | ||
steps: | ||
# Checkout push-to-registry action GitHub repository | ||
- name: Checkout Push to Registry action | ||
|
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.
Removes the v520 and v525 drivers since they are being excluded for both Fedora versions