Skip to content
This repository was archived by the owner on Feb 1, 2024. It is now read-only.

Commit 924532d

Browse files
author
Achim Schneider
committed
fix cotract name
1 parent 583da7a commit 924532d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile.compiler

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
ARG REGISTRY_PATH=docker.io/paritytech
22

3-
FROM ${REGISTRY_PATH}/ink-ci-linux:production
3+
FROM ${REGISTRY_PATH}/ink-ci-linux:staging
44

55
ENV CARGO_TARGET_DIR="/target"
66

77
# Instantiate new Contract
88
RUN cargo contract new contract
99

1010
# Provide Cargo.toml with all ink! dependencies
11-
COPY crates/contract/Cargo.toml /builds/contract/Cargo.toml
11+
# COPY crates/contract/Cargo.toml /builds/contract/Cargo.toml
1212

1313
# Pre-build ink! dependencies
14-
RUN cd contract && cargo contract build
14+
RUN cd contract && cargo contract build
1515
RUN cd contract && cargo test
1616

1717
WORKDIR /builds/contract

crates/contract/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ scale-info = { version = "2.3", default-features = false, features = ["derive"],
1515
ink_e2e = { version = "4.0" }
1616

1717
[lib]
18-
name = "flipper"
18+
name = "contract"
1919
path = "lib.rs"
2020
crate-type = ["cdylib"]
2121

0 commit comments

Comments
 (0)