Closed ViNN280801 closed 2 weeks ago
Automatic mention of the @trilinos/muelu team
@ViNN280801 The issue is that you don't have permissions to run the CI pipeline.
Initiating User ViNN280801 is not approved to run jobs on this machine.
I can kick it off once we have reviewed the proposed changes.
Bug Report
Trilinos organization members, please @ mention the correct package team.
If you are not a member, please refer to https://github.com/trilinos/Trilinos/wiki/Trilinos-Package-Owners to mention the correct parties (because non-members cannot mention Github teams).
Description
When running automated tests on specific configurations, such as
gcc10-openmpi416-EXPERIMENTAL
,gcc830-serial-EXPERIMENTAL
,cuda11-uvm-EXPERIMENTAL
, andframework-tests-EXPERIMENTAL
, the build fails due to a missing directory:/home/Trilinos/build
.Error Message
The following error message appears in the logs:
This suggests that the test environment is trying to use
/home/Trilinos/build
as the working directory, but this directory does not exist or is not being created during the setup process.Expected Behavior
The automated tests should either:
/home/Trilinos/build
directory if it doesn't exist.This issue prevents Pull Requests from passing all checks in configurations that rely on this directory, blocking contributors from merging their changes.
Steps to Reproduce
gcc10-openmpi416-EXPERIMENTAL
gcc830-serial-EXPERIMENTAL
cuda11-uvm-EXPERIMENTAL
framework-tests-EXPERIMENTAL
Images
Suggested Solution
Please consider updating the setup scripts for these test configurations to ensure the
/home/Trilinos/build
directory is created before attempting to use it. Alternatively, switching to a relative or dynamically generated path could also prevent this issue.