Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(upgrade): v1.9.0 to v1.10.0 #2104

Merged
merged 8 commits into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -348,9 +348,9 @@ jobs:
uses: actions/configure-pages@v5
- name: Build Docs
run: |
rustup target add wasm32-unknown-unknown --toolchain nightly-2024-03-01
rustup component add rust-src --toolchain nightly-2024-03-01
RUSTDOCFLAGS="--enable-index-page -Zunstable-options" cargo +nightly-2024-03-01 doc --no-deps --workspace --features frequency
rustup target add wasm32-unknown-unknown --toolchain nightly-2024-08-01
rustup component add rust-src --toolchain nightly-2024-08-01
RUSTDOCFLAGS="--enable-index-page -Zunstable-options" cargo +nightly-2024-08-01 doc --no-deps --workspace --features frequency
- name: Fix file permissions
shell: sh
run: |
Expand Down
26 changes: 18 additions & 8 deletions .github/workflows/verify-pr-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,13 +193,23 @@ jobs:
if: needs.changes.outputs.rust == 'true'
name: Verify Rust Code Format
runs-on: ubuntu-22.04
container: ghcr.io/frequency-chain/frequency/ci-base-image:1.3.1
container:
image: ghcr.io/frequency-chain/frequency/ci-base-image:1.3.1
steps:
- name: Check Out Repo
- name: Check Out Repository
uses: actions/checkout@v4
- name: Check
- name: Install Nightly Toolchain
run: |
rustup toolchain install nightly-2024-08-01
- name: Install Rust Target
run: |
rustup target add wasm32-unknown-unknown --toolchain nightly-2024-08-01
- name: Install Rust Source Component
run: |
rustup component add rust-src --toolchain nightly-2024-08-01
- name: Verify Rust Code Formatting
run: |
cargo +nightly-2024-03-01 fmt --check
cargo +nightly-2024-08-01 fmt --check

lint-rust-code:
needs: changes
Expand Down Expand Up @@ -227,14 +237,14 @@ jobs:
- name: Check Out Repo
uses: actions/checkout@v4
- name: Install Nightly Toolchain
run: rustup toolchain install nightly-2024-03-01
run: rustup toolchain install nightly-2024-08-01
- name: Add Required Components
run: |
rustup target add wasm32-unknown-unknown --toolchain nightly-2024-03-01
rustup component add rust-src --toolchain nightly-2024-03-01
rustup target add wasm32-unknown-unknown --toolchain nightly-2024-08-01
rustup component add rust-src --toolchain nightly-2024-08-01
- name: Build Docs
run: |
RUSTDOCFLAGS="--enable-index-page --check -Zunstable-options" cargo +nightly-2024-03-01 doc --no-deps --features frequency
RUSTDOCFLAGS="--enable-index-page --check -Zunstable-options" cargo +nightly-2024-08-01 doc --no-deps --features frequency

verify-rust-packages-and-deps:
needs: changes
Expand Down
Loading