Skip to content

Commit 75baf9d

Browse files
committed
Updating CI workflows
1 parent ad5b6bb commit 75baf9d

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/cpp-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: Configure CMake
6767
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
6868
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
69-
run: |
69+
run: >
7070
cmake -B ${{ steps.strings.outputs.build-output-dir }}
7171
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
7272
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}

cran-bootstrap.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ r_src_files <- r_src_files[!(r_src_files %in% c("src/Makevars"))]
6464
cat(r_src_files)
6565
pkg_core_files <- c(
6666
".Rbuildignore",
67+
"configure",
68+
"configure.ac",
6769
"cran-comments.md",
6870
"DESCRIPTION",
6971
"inst/COPYRIGHTS",

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ def build_extension(self, ext: CMakeExtension) -> None:
5555
"-DBUILD_DEBUG_TARGETS=OFF",
5656
"-DBUILD_PYTHON=ON",
5757
"-DUSE_OPENMP=ON",
58+
"-DUSE_HOMEBREW_FALLBACK=ON",
5859
]
5960
build_args = []
6061
# Adding CMake arguments set as environment variable

0 commit comments

Comments
 (0)