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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM ubuntu:24.04

ENV DEBIAN_FRONTEND noninteractive
ENV LANG C.UTF-8
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
Mint is a testing framework for Minio object server, available as a podman image. It runs correctness, benchmarking and stress tests. Following are the SDKs/tools used in correctness tests.

- awscli
- aws-sdk-go
- aws-sdk-java
- aws-sdk-go-v2
- aws-sdk-java-v2
- aws-sdk-php
- aws-sdk-ruby
Expand Down
2 changes: 1 addition & 1 deletion build/.minio-dotnet/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ git clone --quiet https://github.com/minio/minio-dotnet.git "${temp_dir}"
pushd "${temp_dir}" >/dev/null
git checkout --quiet "tags/${MINIO_DOTNET_SDK_VERSION}"

dotnet publish Minio.Functional.Tests --configuration Mint --framework net6.0 --output ../out
dotnet publish Minio.Functional.Tests --configuration Mint --framework net8.0 --output ../out

popd >/dev/null
rm -fr "${temp_dir}"
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash -e
#
# Mint (C) 2017 Minio, Inc.
# Mint (C) 2017-2025 Minio, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -15,5 +15,5 @@
# limitations under the License.
#

test_run_dir="$MINT_RUN_CORE_DIR/aws-sdk-go"
test_run_dir="$MINT_RUN_CORE_DIR/aws-sdk-go-v2"
(cd "$test_run_dir" && CGO_ENABLED=0 go build --ldflags "-s -w")
8 changes: 4 additions & 4 deletions build/aws-sdk-java-v2/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
plugins {
// Apply the application plugin to add support for building a CLI application in Java.
application
id("com.github.johnrengelman.shadow") version "8.1.1"
id("com.gradleup.shadow") version "9.2.2"
}

repositories {
Expand All @@ -19,13 +19,13 @@ repositories {

dependencies {
// AWS SDK dependencies
implementation(platform("software.amazon.awssdk:bom:2.25.31"))
implementation(platform("software.amazon.awssdk:bom:2.38.1"))
implementation("software.amazon.awssdk:s3")
implementation("software.amazon.awssdk:netty-nio-client")
implementation("software.amazon.awssdk:aws-crt-client")

// jackson dependency
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.+")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.20.0")
}

tasks.withType<ShadowJar> {
Expand All @@ -35,7 +35,7 @@ tasks.withType<ShadowJar> {
// Apply a specific Java toolchain to ease working on different environments.
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(11))
languageVersion.set(JavaLanguageVersion.of(21))
}
}

Expand Down
58 changes: 0 additions & 58 deletions build/aws-sdk-java/build.xml

This file was deleted.

29 changes: 0 additions & 29 deletions build/aws-sdk-java/install.sh

This file was deleted.

6 changes: 0 additions & 6 deletions build/aws-sdk-java/ivy.xml

This file was deleted.

Loading
Loading