Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pepengu committed Sep 17, 2024
1 parent 406b615 commit 0b4535e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Dependencies
run: apt update -y && apt install curl build-essential lld cargo rustc rust-src -y && curl https://sh.rustup.rs -sSf | sh -s -- -y && export PATH="/root/.cargo/bin:${PATH}" && rustup toolchain install nightly-x86_64-unknown-linux-gnu && rustup component add --toolchain nightly-x86_64-unknown-linux-gnu rustfmt rust-src
run: apt update && apt install curl build-essential lld -y && curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && export PATH="/root/.cargo/bin:${PATH}" && . "$HOME/.cargo/env" && rustup toolchain install nightly && rustup default 1.71 && rustup target add mips64el-unknown-linux-gnuabi64 && rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
- name: Build
run: cd ./examples/rust-examples/mips64/hello-world && cargo build --release
- name: Fmt
Expand All @@ -154,7 +154,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Dependencies
run: apt update -y && apt install curl build-essential lld cargo rustc rust-src -y && curl https://sh.rustup.rs -sSf | sh -s -- -y && export PATH="/root/.cargo/bin:${PATH}" && rustup toolchain install nightly-x86_64-unknown-linux-gnu --component rust-src && rustup component add --toolchain nightly-x86_64-unknown-linux-gnu rustfmt --toolchain nightly-x86_64-unknown-linux-gnu rust-src
run: apt update && apt install curl build-essential lld -y && curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && export PATH="/root/.cargo/bin:${PATH}" && . "$HOME/.cargo/env" && rustup toolchain install nightly && rustup default 1.71 && rustup target add mips64el-unknown-linux-gnuabi64 && rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
- name: Build
run: cd ./examples/rust-examples/mips64/dynamic-memory && cargo build --release
- name: Fmt
Expand All @@ -171,7 +171,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Dependencies
run: apt update -y && apt install curl build-essential lld cargo rustc rust-src -y && curl https://sh.rustup.rs -sSf | sh -s -- -y && export PATH="/root/.cargo/bin:${PATH}" && rustup toolchain install nightly-x86_64-unknown-linux-gnu && rustup component add --toolchain nightly-x86_64-unknown-linux-gnu rustfmt rust-src
run: apt update && apt install curl build-essential lld -y && curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && export PATH="/root/.cargo/bin:${PATH}" && . "$HOME/.cargo/env" && rustup toolchain install nightly && rustup default 1.71 && rustup target add mips64el-unknown-linux-gnuabi64 && rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
- name: Build
run: cd ./examples/rust-examples/mips64/timer && cargo build --release
- name: Fmt
Expand Down

0 comments on commit 0b4535e

Please sign in to comment.