From 9bb086da5e4a4a161ca169aa90a35d82cc0baac5 Mon Sep 17 00:00:00 2001 From: Akiel Aries Date: Sun, 11 Feb 2024 23:26:49 -0700 Subject: [PATCH] #EDITS: testing osx workflow --- .github/workflows/build_osx.yml | 3 ++- modules/optim/function.cpp | 3 --- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_osx.yml b/.github/workflows/build_osx.yml index 3880dafe6..886d6fb26 100644 --- a/.github/workflows/build_osx.yml +++ b/.github/workflows/build_osx.yml @@ -30,6 +30,7 @@ jobs: - name: get compilers run: | + ls /usr/bin ls /usr/bin which gcc which g++-13 @@ -38,7 +39,7 @@ jobs: - name: Configure CMake (GCC) run: | - cmake -DCMAKE_C_COMPILER=/usr/bin/gcc-13 -DCMAKE_CXX_COMPILER=/usr/local/bin/g++-13 -DCMAKE_FORTRAN_COMPILER=/usr/local/bin/gfortran -B ${{github.workspace}}/build -DBUILD_TESTS=ON -DCMAKE_VERBOSE_MAKEFILE=ON + cmake -DCMAKE_C_COMPILER=/usr/local/bin/gcc-13 -DCMAKE_CXX_COMPILER=/usr/local/bin/g++-13 -DCMAKE_FORTRAN_COMPILER=/usr/local/bin/gfortran -B ${{github.workspace}}/build -DBUILD_TESTS=ON -DCMAKE_VERBOSE_MAKEFILE=ON - name: Build (GCC) run: | diff --git a/modules/optim/function.cpp b/modules/optim/function.cpp index d6bb86e05..baf142256 100644 --- a/modules/optim/function.cpp +++ b/modules/optim/function.cpp @@ -691,6 +691,3 @@ bool gpmp::optim::Func::is_valid_interval(double a, double b) { } - - -