Skip to content

Commit 7de227f

Browse files
committed
Skip some SYCL tests
1 parent e254fa1 commit 7de227f

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

.gitlab/hpsf-gitlab-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ workflow:
1111
echo "GITHUB_MERGE_REF=$GITHUB_MERGE_REF"
1212
echo "GITHUB_TRIGGER_ACTOR=$GITHUB_TRIGGER_ACTOR"
1313
echo "GITHUB_PR_TITLE=$GITHUB_PR_TITLE"
14+
git remote remove github
1415
git remote add github https://github.com/amrex-codes/amrex.git
1516
git fetch --depth=1 github "${GITHUB_MERGE_REF}"
1617
git checkout FETCH_HEAD

Tests/Algebra/GMRES/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
if (AMReX_SYCL)
2+
return()
3+
endif()
4+
15
foreach(D IN LISTS AMReX_SPACEDIM)
26
set(_sources main.cpp)
37
set(_input_files )

Tests/FFT/C2C/CMakeLists.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
foreach(D IN LISTS AMReX_SPACEDIM)
2+
if (D EQUAL 2)
3+
return()
4+
endif()
5+
6+
if (D EQUAL 3)
7+
return()
8+
endif()
9+
210
set(_sources main.cpp)
311

412
set(_input_files)

0 commit comments

Comments
 (0)