mirror of
https://github.com/Noratrieb/cargo-bisect-rustc-service.git
synced 2026-01-14 16:25:01 +01:00
update
This commit is contained in:
parent
89f533e357
commit
8bd8676314
2 changed files with 300 additions and 214 deletions
506
Cargo.lock
generated
506
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -1,4 +1,4 @@
|
||||||
FROM rust as build
|
FROM rust:1.72 as build
|
||||||
|
|
||||||
RUN rustup toolchain install nightly
|
RUN rustup toolchain install nightly
|
||||||
RUN rustup default nightly
|
RUN rustup default nightly
|
||||||
|
|
@ -12,17 +12,17 @@ COPY Cargo.toml Cargo.lock ./
|
||||||
RUN mkdir src
|
RUN mkdir src
|
||||||
RUN echo "fn main() {}" > src/main.rs
|
RUN echo "fn main() {}" > src/main.rs
|
||||||
|
|
||||||
RUN cargo build --release -Zsparse-registry
|
RUN cargo build --release
|
||||||
|
|
||||||
COPY src ./src
|
COPY src ./src
|
||||||
COPY index.html index.html
|
COPY index.html index.html
|
||||||
|
|
||||||
# now rebuild with the proper main
|
# now rebuild with the proper main
|
||||||
RUN touch src/main.rs
|
RUN touch src/main.rs
|
||||||
RUN cargo build --release -Zsparse-registry
|
RUN cargo build --release
|
||||||
|
|
||||||
### RUN
|
### RUN
|
||||||
FROM rust
|
FROM rust:1.72
|
||||||
|
|
||||||
RUN cargo install cargo-bisect-rustc
|
RUN cargo install cargo-bisect-rustc
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue