Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
naoki9911 committed Mar 19, 2024
1 parent 953ffb0 commit 2ab8362
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
benchmark-all:
runs-on: ubuntu-22.04
needs: sync
timeout-minutes: 20
timeout-minutes: 40
steps:
- uses: actions/checkout@v4
- name: setup lxd
Expand Down Expand Up @@ -252,7 +252,6 @@ jobs:
libjs-* \
libllvm* \
nano \
python3-* \
podman \
buildah \
skopeo \
Expand Down
2 changes: 1 addition & 1 deletion tests/bench-log.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
pull_csv = csv.writer(open("pull_log.csv", "w"))
pull_download_csv = csv.writer(open("pull_download_log.csv", "w"))

images=["apach-root", "mysql-root", "nginx-root", "postgres-root", "redis-root"]
images=["apache", "mysql", "nginx", "postgres", "redis"]
for image in images:
with open("{}-{}.log".format(image, sys.argv[1])) as f:
reader = csv.reader(f)
Expand Down
12 changes: 6 additions & 6 deletions tests/bench.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ do
done

cd $RESULT_DIR
python ../bench-log.py benchmark
python ../bench-agg-di3fs.py di3fs_log.csv > di3fs.csv
python ../bench-agg-patch.py patch_log.csv > patch.csv
python ../bench-agg-merge.py merge_log.csv > merge.csv
python ../bench-agg-diff.py diff_binary_log.csv > diff_binary.csv
python ../bench-agg-diff.py diff_file_log.csv > diff_file.csv
python3 ../bench-log.py benchmark
python3 ../bench-agg-di3fs.py di3fs_log.csv > di3fs.csv
python3 ../bench-agg-patch.py patch_log.csv > patch.csv
python3 ../bench-agg-merge.py merge_log.csv > merge.csv
python3 ../bench-agg-diff.py diff_binary_log.csv > diff_binary.csv
python3 ../bench-agg-diff.py diff_file_log.csv > diff_file.csv

0 comments on commit 2ab8362

Please sign in to comment.