d2ff589858
(cherry picked from commitf9d75d4705
) (cherry picked from commit64f76f4ab2
) (cherry picked from commit5d02454155
) [CI] Forgejo Actions workflows (cherry picked from commit3ff59b5379
) (cherry picked from commit8af826a6f7
) (cherry picked from commitd7c09d9cc8
) [CI] use the docker label instead of ubuntu-latest (cherry picked from commitb6a6470db6
) [CI] all tests need compliance before proceeding (cherry picked from commitb35c496f2c
) (cherry picked from commit36a4148a8e
) (cherry picked from commit7ffcffa653
) (cherry picked from commit8a246d296e
) (cherry picked from commitdd0b6e1826
) [CI] Forgejo Actions based release process (squash) MySQL optimization Refs: https://codeberg.org/forgejo/forgejo/issues/976 (cherry picked from commitb4b8c489e6
) (cherry picked from commit1e861db4af
) (cherry picked from commita6c0e00330
) (cherry picked from commitf97b336465
) (cherry picked from commit 6d65d5f0d6f798556a8f9e547896be03a5ee2f87) (cherry picked from commit79bfbadbed
) (cherry picked from commite86c40a34a
) (cherry picked from commitda0c454adb
) (cherry picked from commitb49d892cda
) [CI] enable minio tests (cherry picked from commit4d8f438031
) (cherry picked from commitc4eeb0a61e
) [CI] Forgejo Actions based CI for PR & branches (squash) cleanup (cherry picked from commit80eb20e842
)
27 lines
594 B
Go
27 lines
594 B
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package storage
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
)
|
|
|
|
func TestMinioStorageIterator(t *testing.T) {
|
|
if os.Getenv("CI") == "" {
|
|
t.Skip("minioStorage not present outside of CI")
|
|
return
|
|
}
|
|
testStorageIterator(t, setting.MinioStorageType, &setting.Storage{
|
|
MinioConfig: setting.MinioStorageConfig{
|
|
Endpoint: "minio:9000",
|
|
AccessKeyID: "123456",
|
|
SecretAccessKey: "12345678",
|
|
Bucket: "gitea",
|
|
Location: "us-east-1",
|
|
},
|
|
})
|
|
}
|