Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added print callback/redirect support to the C library to route C prints to glog in C++. #63

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
Language: Cpp
BasedOnStyle: Google
IndentPPDirectives: AfterHash
---
Language: Proto
BasedOnStyle: Google
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ jobs:

- name: Upload artifact
if: matrix.tool == 'bazel'
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4.4.3
with:
path: polaris_examples.tar.gz
name: polaris_examples.cpp.${{ matrix.arch }}
Expand Down Expand Up @@ -302,7 +302,7 @@ jobs:

- name: Upload artifact
if: matrix.tool == 'bazel'
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4.4.3
with:
path: c/polaris_examples.tar.gz
name: polaris_examples.c.${{ matrix.arch }}
Expand Down Expand Up @@ -340,7 +340,7 @@ jobs:
- {lang: c, arch: aarch64}
steps:
- name: Download artifact
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4.1.8
with:
name: polaris_examples.${{ matrix.lang }}.${{ matrix.arch }}
- name: Set asset filename
Expand Down
Loading
Loading