Skip to content

Commit ea0545d

Browse files
committed
fix: remove extra slash in path
1 parent dc67a36 commit ea0545d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/self-hosted.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Self-Hosted
22

33
on:
44
push:
5-
branches: [ master, self-hosted-runner ]
5+
branches: [ master ]
66
pull_request:
7-
branches: [ master, self-hosted-runner ]
7+
branches: [ master ]
88
workflow_dispatch:
99

1010
env:
@@ -20,7 +20,7 @@ jobs:
2020
include:
2121
- os: ubuntu-24.04
2222
cuda: "12.8"
23-
gcc: 13
23+
gcc: 14
2424
env:
2525
config: "Release"
2626

tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ target_link_libraries(${TESTS_TARGET} PUBLIC gtest)
77
target_link_libraries(${TESTS_TARGET} PUBLIC fast_matrix_market)
88

99
target_compile_definitions(${TESTS_TARGET} PUBLIC
10-
TESTS_DATA_PATH="${CMAKE_CURRENT_SOURCE_DIR}/test_data/")
10+
TESTS_DATA_PATH="${CMAKE_CURRENT_SOURCE_DIR}/test_data")
1111

1212
# tests files
1313
target_sources(${TESTS_TARGET} PUBLIC "rpq_tests.cpp")

0 commit comments

Comments
 (0)