Skip to content

Commit 4fc90bd

Browse files
Merge pull request #1377 from rylev/timeout-download
Remove Database Round Trip Testing
2 parents da508f4 + a60ac52 commit 4fc90bd

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -200,21 +200,3 @@ jobs:
200200

201201
- name: Export empty SQLite DB to Postgres
202202
run: ./target/debug/sqlite-to-postgres "$(mktemp)" 'postgresql://postgres:postgres@localhost:5432/postgres'
203-
204-
- name: Roundtrip export
205-
run: |
206-
sudo apt-get update
207-
sudo apt-get install -y wget python3-snappy sqlite3
208-
209-
wget -q 'http://perf-data.rust-lang.org/export.db.sz'
210-
python3 -m snappy -d export.db.sz > before.db
211-
212-
./target/debug/sqlite-to-postgres before.db 'postgresql://postgres:postgres@localhost:5432/postgres'
213-
sqlite3 before.db .dump > before.dump
214-
215-
rm before.db
216-
217-
./target/debug/postgres-to-sqlite 'postgresql://postgres:postgres@localhost:5432/postgres' after.db
218-
sqlite3 after.db .dump > after.dump
219-
220-
diff -w before.dump after.dump

0 commit comments

Comments
 (0)