Skip to content

Commit

Permalink
[ci] MacOS CI updates (#1695) (#1697)
Browse files Browse the repository at this point in the history
Co-authored-by: John Kerl <[email protected]>
  • Loading branch information
github-actions[bot] and johnkerl authored Sep 18, 2023
1 parent e90d7db commit 3bf320a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/python-ci-minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
- runs-on: ubuntu-22.04
cc: gcc-11
cxx: g++-11
- runs-on: macos-12
cc: clang
cxx: clang++
uses: ./.github/workflows/python-ci-single.yml
with:
os: ${{ matrix.os }}
Expand Down
2 changes: 0 additions & 2 deletions libtiledbsoma/src/soma/logger_public.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@

#include <stdexcept> // for windows: error C2039: 'runtime_error': is not a member of 'std'

#include <spdlog/spdlog.h>

namespace tiledbsoma {

/** Set log level for global logger and optionally set a logfile. */
Expand Down
2 changes: 1 addition & 1 deletion libtiledbsoma/src/utils/logger.cc
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ Logger::Logger() {
logger_->sinks().back().get());
console_sink->set_color(
spdlog::level::critical, console_sink->red_bold);
logger_->set_pattern(LOG_PATTERN);
#endif
}
logger_->set_pattern(LOG_PATTERN);
set_level("INFO");
}

Expand Down

0 comments on commit 3bf320a

Please sign in to comment.