Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/haskell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:
build:
name: Build
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion haskell/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:buster-slim
FROM debian:bookworm-slim

RUN \
apt-get update && \
Expand Down
4 changes: 2 additions & 2 deletions python/Dockerfile.benchmark
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM python:3.7-slim-buster
FROM python:3.7-slim-bookworm

ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y git llvm-7-dev build-essential unzip curl libjson-perl libdigest-crc-perl
&& apt-get install -y git build-essential unzip curl libjson-perl libdigest-crc-perl

# install perl runtime for kaitai struct
RUN \
Expand Down
2 changes: 1 addition & 1 deletion rust/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.67.1-slim-buster
FROM rust:1.88.0-slim

ARG DEBIAN_FRONTEND=noninterative

Expand Down
4 changes: 2 additions & 2 deletions test_data/benchmark_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@

# How much faster Rust should be than other implementations
RATIOS_SBP2JSON = {
"haskell" : 3.01,
"haskell" : 3.2,
"python" : 23.38,
"kaitai_python" : 5.00,
"kaitai_perl" : 18,
"kaitai_perl" : 20,
}

RATIOS_JSON2SBP = {
Expand Down
Loading