Skip to content

Commit

Permalink
ci: Build creusot-contracts with stable rustc
Browse files Browse the repository at this point in the history
  • Loading branch information
Lysxia committed Jan 28, 2025
1 parent 6d5220b commit ecd3f36
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,21 @@ jobs:
~/.cargo/git
target
key: ${{ runner.os }}-contracts-${{ hashFiles('creusot-contracts/Cargo.lock') }}
- name: Build creusot-contracts with rustc
- name: Build creusot-contracts with nightly rustc
run: cargo build -p creusot-contracts
contracts-build-stable:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-contracts-stable-${{ hashFiles('creusot-contracts/Cargo.lock') }}
- name: Build creusot-contracts with stable rustc
run: cargo +stable build -p creusot-contracts
build:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit ecd3f36

Please sign in to comment.