ci: stable Rust for deny, remove boost dep for docs (#364)
Some checks are pending
CI / fmt (push) Waiting to run
CI / typo (push) Waiting to run
CI / wasm-32-bit-support (cuprate-epee-encoding) (push) Waiting to run
CI / wasm-32-bit-support (cuprate-fixed-bytes) (push) Waiting to run
CI / wasm-32-bit-support (cuprate-rpc-types) (push) Waiting to run
CI / ci (macos-latest, stable, bash) (push) Waiting to run
CI / ci (ubuntu-latest, stable, bash) (push) Waiting to run
CI / ci (windows-latest, stable-x86_64-pc-windows-gnu, msys2 {0}) (push) Waiting to run
Deny / audit (push) Waiting to run
Doc / build (push) Waiting to run
Doc / deploy (push) Blocked by required conditions

* doc.yml: remove boost dep

* deny.yml: install stable rust
This commit is contained in:
hinto-janai 2025-01-16 11:31:55 -05:00 committed by GitHub
parent c817c3b889
commit 6320411f60
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 6 deletions

View file

@ -25,9 +25,16 @@ jobs:
~/.cargo ~/.cargo
target target
key: deny key: deny
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
submodules: recursive submodules: recursive
- name: Install dependencies - name: Install dependencies
run: cargo install cargo-deny --locked run: cargo install cargo-deny --locked
- name: Deny - name: Deny

View file

@ -40,12 +40,6 @@ jobs:
path: target/debug path: target/debug
key: doc key: doc
# Packages other than `Boost` used by `Monero` are listed here.
# https://github.com/monero-project/monero/blob/c444a7e002036e834bfb4c68f04a121ce1af5825/.github/workflows/build.yml#L71
- name: Install dependencies (Linux)
run: sudo apt install -y libboost-dev
- name: Documentation - name: Documentation
run: cargo +nightly doc --workspace --all-features run: cargo +nightly doc --workspace --all-features