Skip to content

Commit 7707e09

Browse files
committed
Incorporate export-to-sqlite.rs into postgres-to-sqlite.rs
1 parent df118a7 commit 7707e09

File tree

5 files changed

+202
-450
lines changed

5 files changed

+202
-450
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ COPY ./database ./database
2424
COPY ./intern ./intern
2525

2626
RUN bash -c 'source $HOME/.cargo/env && cargo build --release -p site'
27-
RUN bash -c 'source $HOME/.cargo/env && cargo build --release --bin export-to-sqlite'
27+
RUN bash -c 'source $HOME/.cargo/env && cargo build --release --bin postgres-to-sqlite'
2828

2929
FROM ubuntu:20.04 as binary
3030

3131
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
3232
ca-certificates \
3333
git
3434

35-
COPY --from=build /target/release/export-to-sqlite /usr/local/bin/rustc-perf-export-to-sqlite
35+
COPY --from=build /target/release/postgres-to-sqlite /usr/local/bin/rustc-perf-postgres-to-sqlite
3636
COPY --from=build /target/release/site /usr/local/bin/rustc-perf-site
3737
COPY --from=build site/static /site/static
3838

database/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ futures = "0.3.5"
2525
log = "0.4"
2626
bytes = "1"
2727
csv = "1"
28+
clap = "2.25"

database/src/bin/export-to-sqlite.rs

Lines changed: 0 additions & 333 deletions
This file was deleted.

0 commit comments

Comments
 (0)