Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani committed Dec 17, 2024
1 parent 84460f3 commit 25f4224
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 35 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/compile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup CI
uses: ./.github/actions/setup
- name: Compile the range program
run: cargo build --profile release-client-lto
working-directory: programs/range
Expand Down
19 changes: 2 additions & 17 deletions .github/workflows/cost-estimator-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,8 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: rust-cache
uses: actions/cache@v3
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
restore-keys: rust-1.81.0-
key: rust-1.81.0-${{ hashFiles('**/Cargo.toml') }}

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Setup CI
uses: ./.github/actions/setup

- name: Run cost estimator
run: |
Expand Down
19 changes: 2 additions & 17 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,8 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: rust-cache
uses: actions/cache@v3
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
restore-keys: rust-1.81.0-
key: rust-1.81.0-${{ hashFiles('**/Cargo.toml') }}

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Setup CI
uses: ./.github/actions/setup

- name: OP Sepolia cost estimator on recent block range
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
toolchain: nightly
components: rustfmt

- name: Run rustfmt
Expand Down
4 changes: 4 additions & 0 deletions proposer/succinct/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ RUN apt-get update && apt-get install -y \

RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
ENV PATH=/root/.cargo/bin:$PATH
RUN rustup install nightly
RUN rustup default nightly

# Verify Rust installation
RUN rustc --version && cargo --version
Expand Down Expand Up @@ -60,6 +62,8 @@ RUN apt-get update && apt-get install -y \

RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
ENV PATH=/root/.cargo/bin:$PATH
RUN rustup install nightly
RUN rustup default nightly

# Verify Rust installation
RUN rustc --version && cargo --version
Expand Down

0 comments on commit 25f4224

Please sign in to comment.