Skip to content

Commit

Permalink
feat(bindings): Add support to setup a OpenTracing based logger
Browse files Browse the repository at this point in the history
  • Loading branch information
poljar authored Feb 1, 2023
1 parent 7b044ef commit ab0e276
Show file tree
Hide file tree
Showing 5 changed files with 426 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/bindings_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v2

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Check xtask cache
uses: actions/cache@v3
id: xtask-cache
Expand Down Expand Up @@ -58,6 +63,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v1

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -204,6 +214,11 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v2

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Check xtask cache
uses: actions/cache@v3
id: xtask-cache
Expand Down Expand Up @@ -236,6 +251,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v1

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v2

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Check xtask cache
uses: actions/cache@v3
id: xtask-cache
Expand Down Expand Up @@ -187,6 +192,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v1

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -382,6 +392,11 @@ jobs:
- name: Checkout the repo
uses: actions/checkout@v3

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
Expand Down
Loading

0 comments on commit ab0e276

Please sign in to comment.