Skip to content

Commit 980f1ec

Browse files
committed
Update macos github actions
1 parent 81053e9 commit 980f1ec

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/R-CMD-check-macOS.yml

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
##############################################################################
22
# GitHub Actions Workflow to test the R interface of volesti
33
#
4-
# Copyright (c) 2020 Vissarion Fisikopoulos
4+
# Copyright (c) 2020-2024 Vissarion Fisikopoulos
55
#
66
# Licensed under GNU LGPL.3, see LICENCE file
77
##############################################################################
@@ -20,8 +20,20 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
config:
23+
## incompatible versions of gfortran and R
2324
- {os: macOS-latest, r: '4.1.2'}
25+
## building with clang 15 yields a compile error from external/PackedCSparse/FloatArray.h:11:
26+
## error "This header is only meant to be used on x86 and x64 architecture"
2427
- {os: macOS-latest, r: 'release'}
28+
## In file included from direct_sampling.cpp:19:
29+
## In file included from volesti/include/volume/volume_sequence_of_balls.hpp:21:
30+
## volesti/include/convex_bodies/hpolytope.h:1015:35: error: no template named 'is_same_v' in namespace 'std'; did you mean 'is_same'?
31+
## -> std::enable_if_t<std::is_same_v<MT, Eigen::SparseMatrix<NT, Eigen::RowMajor>> && !std::is_same_v<update_parameters, int>, void> { // MT must be in RowMajor format
32+
- {os: macOS-13, r: '4.1.2'}
33+
- {os: macOS-12, r: '4.1.2'}
34+
## pass without errors
35+
- {os: macOS-13, r: 'release'}
36+
- {os: macOS-12, r: 'release'}
2537

2638
env:
2739
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true

0 commit comments

Comments
 (0)