-
Notifications
You must be signed in to change notification settings - Fork 42
SLES15 SUPPORT #1000
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
SLES15 SUPPORT #1000
Conversation
| name: "${{matrix.os}}, ${{matrix.build_type}}, shared=${{matrix.shared_library}}" | ||
| # run only on upstream; forks will not have the HW | ||
| if: github.repository == 'oneapi-src/unified-memory-framework' | ||
| #if: github.repository == 'oneapi-src/unified-memory-framework' |
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 suppose it should not be commented out
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.
Why have you commented it out?
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.
ok, commented for testing purpose
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.
Please do not resolve issues on your own. The issue is always resolved by the submitter.
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.
ok, commented for testing purpose
If it is just for testing then you should:
- convert this PR to draft (since it is not read yet)
- use a temporary patch like ldorau@a590c27 on my
DEBUG_CI_run_only_multi_numabranch to test only one CI job that you are changing and do not occupy other resources, when you do not need them (the resources in public UMF CI are very limited).
| - name: Run tests (on SLES15) | ||
| if: matrix.os == 'sles15' | ||
| working-directory: ${{github.workspace}}/build | ||
| run: | | ||
| ctest --output-on-failure --test-dir test -E "umf-provider_os_memory_multiple_numa_nodes" | ||
| ./test/umf_test-provider_os_memory_multiple_numa_nodes \ | ||
| --gtest_filter="-*checkModeLocal/*:*checkModePreferredEmptyNodeset/*:testNuma.checkModeInterleave" |
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 cannot see any difference between 'rhel-9.1' and 'sles15', so why there are two separate cases?
ldorau
left a comment
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.
|
|
||
| - name: Run tests | ||
| if: matrix.os != 'rhel-9.1' | ||
| if: (matrix.os != 'rhel-9.1') && (matrix.os != 'sles15') |
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 would run all tests on SLES - did it not work? can you send some logs with failing SLES on all tests?
| name: "${{matrix.os}}, ${{matrix.build_type}}, shared=${{matrix.shared_library}}" | ||
| # run only on upstream; forks will not have the HW | ||
| if: github.repository == 'oneapi-src/unified-memory-framework' | ||
| #if: github.repository == 'oneapi-src/unified-memory-framework' |
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.
when done testing, pls un-comment this

SLES15 SUPPORT