Skip to content

Commit

Permalink
add update and install missing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
photovoltex committed Jan 12, 2025
1 parent a872991 commit 20cad77
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ jobs:
uses: actions/[email protected]

- name: Install toolchain
run: curl https://sh.rustup.rs -sSf | sh -s -- --profile minimal --default-toolchain ${{ matrix.toolchain }} -y
run: curl https://sh.rustup.rs -sSf | sh -s -- --profile minimal --default-toolchain ${{ matrix.toolchain }} -y

- name: Get Rustc version
id: get-rustc-version
Expand All @@ -241,7 +241,10 @@ jobs:

- name: Install the cross compiler rust targets
run: rustup target add ${{ matrix.target }}


- name: Update and Install dependencies
run: apt-get update && apt-get install -y cmake libclang-dev

- name: Install cross compiler
run: |
if [ ${{ matrix.target }} = "armv7-unknown-linux-gnueabihf" ]; then
Expand Down

0 comments on commit 20cad77

Please sign in to comment.