Skip to content
Open
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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ define docker_run
$(eval $@_MISC = $(3))
rm -f $@
for i in $(shell seq 1 $(RUNS)) ; do \
timeout -s KILL $$(( $(RUNS) * 180 + 60 ))s \
timeout -s KILL 180 \
docker run --rm -v $(CURDIR):/workspace \
jsonschema-benchmark/$($@_TOOL) $($@_INPUT) $($@_MISC) > [email protected] ; \
STATUS=$$? ; \
Expand Down
4 changes: 2 additions & 2 deletions implementations/corvus/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM mcr.microsoft.com/dotnet/sdk:9.0.102-alpine3.21
FROM mcr.microsoft.com/dotnet/sdk:10.0.100-alpine3.22

# Note: coreutils is necessary so /usr/bin/date can use nanoseconds
RUN apk add --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community coreutils time

COPY . /app
RUN dotnet tool install --global Corvus.Json.JsonSchema.TypeGeneratorTool --version 4.2.3
RUN dotnet tool install --global Corvus.Json.JsonSchema.TypeGeneratorTool --version 4.3.21
ENTRYPOINT ["/app/memory-wrapper.sh", "/app/generate-and-run.sh"]
CMD []