Skip to content
Merged
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
16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,10 @@ jobs:
ref: ${{ needs.set-tags.outputs.git_ref }}
- name: Install Protoc
uses: arduino/setup-protoc@v1
- name: Install libclang
run: |
sudo apt-get update
sudo apt-get install -y libclang-dev
- name: Setup Rust toolchain
run: rustup show
- name: Clippy
Expand All @@ -257,6 +261,10 @@ jobs:
ref: ${{ needs.set-tags.outputs.git_ref }}
- name: Install Protoc
uses: arduino/setup-protoc@v1
- name: Install libclang
run: |
sudo apt-get update
sudo apt-get install -y libclang-dev
- name: Cargo build
uses: ./.github/workflow-templates/cargo-build
- name: Upload runtimes
Expand All @@ -281,6 +289,10 @@ jobs:
ref: ${{ needs.set-tags.outputs.git_ref }}
- name: Install Protoc
uses: arduino/setup-protoc@v1
- name: Install libclang
run: |
sudo apt-get update
sudo apt-get install -y libclang-dev
- name: Cargo build
uses: ./.github/workflow-templates/cargo-build
with:
Expand All @@ -306,6 +318,10 @@ jobs:
ref: ${{ needs.set-tags.outputs.git_ref }}
- name: Install Protoc
uses: arduino/setup-protoc@v1
- name: Install libclang
run: |
sudo apt-get update
sudo apt-get install -y libclang-dev
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.3
- name: Setup Variables
Expand Down
Loading
Loading