Skip to content
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
12 changes: 12 additions & 0 deletions .github/styles/config/vocabularies/TraceMachina/accept.txt
Original file line number Diff line number Diff line change
Expand Up @@ -118,5 +118,17 @@ Brex
Citrix
Menlo
benchmarked
[Rr]epos
[Dd]ockerfile
Dev
max_workers
min_warm_workers
crictl
runtimes
enum
crypto
devs
sudo
fs
Thanos
Quickwit
9 changes: 9 additions & 0 deletions .github/workflows/native-cargo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,15 @@ jobs:
run: rustup update && rustup default ${{ matrix.toolchain }}
shell: bash

- name: Install protoc
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update && sudo apt-get install -y protobuf-compiler
elif [ "$RUNNER_OS" == "Windows" ]; then
choco install protoc
fi
shell: bash

- name: Rust cache
# https://github.com/Swatinem/rust-cache/releases/tag/v2.8.1
uses: Swatinem/rust-cache@a84bfdc502f07db5a85dd9d7a30f91a931516cc5
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/sanitizers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ jobs:
remove_dotnet: true
remove_haskell: true

- name: Install protoc
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
shell: bash

- name: Setup Bazel
uses: >- # v0.13.0
bazel-contrib/setup-bazel@663f88d97adf17db2523a5b385d9407a562e5551
Expand Down
5 changes: 5 additions & 0 deletions .hadolint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
ignored:
- DL3008 # Pin versions in apt get install
- DL3016 # Pin versions in npm install
- DL3018 # Pin versions in apk add
Loading
Loading