File tree 4 files changed +8
-6
lines changed
4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,8 @@ name: black
5
5
# Controls when the action will run. Triggers the workflow on push or pull request
6
6
# events but only for the master branch
7
7
on :
8
- push :
9
- branches : [master]
10
8
pull_request :
9
+ push :
11
10
branches : [master]
12
11
13
12
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
Original file line number Diff line number Diff line change @@ -5,9 +5,8 @@ name: clang-format Check
5
5
# Controls when the action will run. Triggers the workflow on push or pull request
6
6
# events but only for the master branch
7
7
on :
8
- push :
9
- branches : [master]
10
8
pull_request :
9
+ push :
11
10
branches : [master]
12
11
13
12
jobs :
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 0.6.1] - 2021-03-01
10
+ ### Fixed
11
+ - Do not use POP_FRONT in FindDPCPP.cmake so that we can use a cmake version older that 3.15.
12
+
9
13
## [ 0.6.0] - 2021-03-01
10
14
### Added
11
15
- Documentation improvements.
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ execute_process(
54
54
OUTPUT_VARIABLE dpcpp_ver
55
55
)
56
56
57
- # If dpcpp is found then set then set the package variables
57
+ # If dpcpp is found then set the package variables
58
58
if (${dpcpp_result} MATCHES "0" )
59
59
string (REPLACE "\n " ";" DPCPP_VERSION_LIST "${dpcpp_ver} " )
60
60
list (GET DPCPP_VERSION_LIST 0 dpcpp_ver_line)
@@ -89,7 +89,7 @@ if(${dpcpp_result} MATCHES "0")
89
89
90
90
# set package-level variables
91
91
set (DPCPP_ROOT ${DPCPP_INSTALL_DIR} )
92
- list (POP_FRONT DPCPP_VERSION_LIST DPCPP_VERSION)
92
+ list (GET DPCPP_VERSION_LIST 0 DPCPP_VERSION)
93
93
set (DPCPP_INCLUDE_DIR ${DPCPP_INSTALL_DIR} /include )
94
94
set (DPCPP_SYCL_INCLUDE_DIR ${DPCPP_INSTALL_DIR} /include /sycl)
95
95
set (DPCPP_LIBRARY_DIR ${DPCPP_INSTALL_DIR} /lib)
You can’t perform that action at this time.
0 commit comments