Skip to content
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

running DR tests together with oneDPL tests #1691

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,14 +216,17 @@ jobs:
echo "::warning::CMake: $(cmake --version)"
echo "::warning::Compiler: $(${{ matrix.cxx_compiler }} --version)"

if [[ "${{ matrix.std }}" == "23" ]]; then
make_targets="shp-all-tests"
ctest_flags="-L SHP"
echo "::warning::23 standard is set. Compile and run only distributed ranges tests"
elif [[ "${{ matrix.backend }}" == "dpcpp" ]]; then
if [[ "${{ matrix.backend }}" == "dpcpp" ]]; then
make_targets="build-onedpl-sycl_iterator-tests"
ctest_flags="-R sycl_iterator_.*\.pass"
echo "::warning::dpcpp backend is set. Compile and run only sycl_iterator tests"

if [[ "${{ matrix.std }}" == "23" ]]; then
make_targets="$make_targets shp-all-tests"
ctest_flags="$ctest_flags|shp-tests"
echo "::warning::23 standard is set. Compile and run distributed ranges tests"
fi

else
make_targets="build-onedpl-tests"
fi
Expand Down
Loading