You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently all our test CI jobs use rapids-download-*-from-s3 to get their artifacts (cudf example). These tools all call rapids-download-from-s3, which in turn calls rapids-s3-path. Since rapids-s3-path constructs its path based on the build type, that implicitly means that test.yaml always pulls the build from the corresponding nightly build, even if there was a more recent branch build. This is particularly problematic in light of rapidsai/build-planning#127 since it is now more important to be able to resolve these failures within a given day i.e. by rerunning the test workflow on a branch build. To support this use case, we should make the build type an optional input to the test.yaml workflow to customize which type of build to pull in the workflow. This will allow us to customize running a test workflow on a branch build to unblock CI once fixes are in.
The text was updated successfully, but these errors were encountered:
Then, we should make build_type a configurable input to test.yaml in each repository. The default should be nightly, same as our build workflows, but we need to be able to set build_type: branch in manually triggered runs.
Currently all our test CI jobs use
rapids-download-*-from-s3
to get their artifacts (cudf example). These tools all callrapids-download-from-s3
, which in turn callsrapids-s3-path
. Sincerapids-s3-path
constructs its path based on the build type, that implicitly means that test.yaml always pulls the build from the corresponding nightly build, even if there was a more recent branch build. This is particularly problematic in light of rapidsai/build-planning#127 since it is now more important to be able to resolve these failures within a given day i.e. by rerunning the test workflow on a branch build. To support this use case, we should make the build type an optional input to the test.yaml workflow to customize which type of build to pull in the workflow. This will allow us to customize running a test workflow on a branch build to unblock CI once fixes are in.The text was updated successfully, but these errors were encountered: