Skip to content

Commit dc11dec

Browse files
committed
linting + artifact name conflict
1 parent 5f66642 commit dc11dec

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

cpp/src/arrow/compute/kernels/hash_aggregate.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,8 @@ template <typename T>
284284
concept CFloatingPointConcept = std::floating_point<T> || std::same_as<T, util::Float16>;
285285
#else
286286
template <typename T>
287-
concept CFloatingPointConcept = std::is_floating_point_v<T> || std::same_as<T, util::Float16>;
287+
concept CFloatingPointConcept =
288+
std::is_floating_point_v<T> || std::same_as<T, util::Float16>;
288289
#endif
289290

290291
template <typename T>

dev/tasks/r/github.macos.cran.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,6 @@ jobs:
9797
- name: Save the test output
9898
uses: actions/upload-artifact@v4
9999
with:
100-
name: test-output
100+
name: test-output-{{ '${{ matrix.config }}' }}
101101
path: arrow-tests/testthat.Rout*
102102
if: always()

0 commit comments

Comments
 (0)