Skip to content

Commit c098509

Browse files
committed
feat(ci): add Rust installation step for workflows
* Include Rust installation for Linux and macOS environments * Ensures Rust is available for building dependencies
1 parent 44a3810 commit c098509

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/testing-nightly.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,13 @@ jobs:
143143
mingw-w64-x86_64-texinfo
144144
mingw-w64-x86_64-libassuan
145145
mingw-w64-x86_64-ccache
146+
mingw-w64-x86_64-rust
146147
if: runner.os == 'Windows'
147148

149+
- name: Install Rust
150+
uses: dtolnay/rust-toolchain@stable
151+
if: runner.os == 'Linux' || runner.os == 'macOS'
152+
148153
- name: Build GpgME (macOS)
149154
run: |
150155
cd ${{github.workspace}}/third_party/gpgme

0 commit comments

Comments
 (0)