Skip to content

Commit

Permalink
fix: dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
stepanLav committed Feb 19, 2025
1 parent 8f9c5f6 commit 2a6a971
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 10 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/android-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ jobs:
fetch-depth: 50
submodules: 'recursive'

- name: Install System Dependencies (Linux)
run: |
sudo apt-get update
sudo apt-get install -y clang libclang-dev
- name: Install Rust stable toolchain
uses: dtolnay/rust-toolchain@stable

Expand Down Expand Up @@ -92,6 +97,11 @@ jobs:
fetch-depth: 50
submodules: 'recursive'

- name: Install System Dependencies (Linux)
run: |
sudo apt-get update
sudo apt-get install -y clang libclang-dev
- name: Install Rust stable toolchain
uses: dtolnay/rust-toolchain@stable

Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/android-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ jobs:
fetch-depth: 50
submodules: 'recursive'

- name: Install System Dependencies (Linux)
run: |
sudo apt-get update
sudo apt-get install -y clang libclang-dev
- name: Install Rust stable toolchain
uses: dtolnay/rust-toolchain@stable

Expand Down Expand Up @@ -88,6 +93,11 @@ jobs:
fetch-depth: 50
submodules: 'recursive'

- name: Install System Dependencies (Linux)
run: |
sudo apt-get update
sudo apt-get install -y clang libclang-dev
- name: Install Rust stable toolchain
uses: dtolnay/rust-toolchain@stable

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
fetch-depth: 1
submodules: recursive

- name: Install dependencies
run: |
- name: Install System Dependencies (Linux)
run: |
sudo apt-get update
sudo apt-get install -y libclang-dev
sudo apt-get install -y clang libclang-dev
# - name: Rust Cache
# uses: Swatinem/rust-cache@27b8ea9368cf428f0bfe41b0876b1a7e809d9844 # v2.7.7
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/opencv-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Build OpenCV Docker Image
on:
workflow_dispatch:
push:
# paths:
# - 'docker/opencv.Dockerfile'
# branches:
# - master
paths:
- 'docker/opencv.Dockerfile'
branches:
- master

jobs:
build-and-push:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rust-clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
fetch-depth: 50
submodules: 'recursive'

- name: Install dependencies
run: |
- name: Install System Dependencies (Linux)
run: |
sudo apt-get update
sudo apt-get install -y llvm-dev libclang-dev clang
sudo apt-get install -y clang libclang-dev
- name: Install Rust stable toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/rust-test-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
fetch-depth: 50
submodules: 'recursive'

- name: Install System Dependencies (Linux)
run: |
sudo apt-get update
sudo apt-get install -y clang libclang-dev
- name: Install Rust stable toolchain
uses: dtolnay/rust-toolchain@stable

Expand Down

0 comments on commit 2a6a971

Please sign in to comment.