diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 695c453..bf0aa59 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -94,7 +94,7 @@ jobs: steps: - uses: actions/checkout@v4 - - name: GMP library path on MacOS + - name: Setup library path on MacOS if: matrix.os.name == 'macOS' run: echo "LIBRARY_PATH=/opt/homebrew/lib:$LIBRARY_PATH" >> $GITHUB_ENV @@ -102,6 +102,10 @@ jobs: if: matrix.os.name == 'Windows' run: git clone https://github.com/Chia-Network/mpir_gc_x64.git + - name: Install libclang-dev on Linux + if: matrix.os.name == 'Ubuntu' + run: sudo apt-get install libclang-dev + - name: Set up Rust uses: dtolnay/rust-toolchain@stable