mirror of
https://github.com/minio/minio-rs.git
synced 2025-12-06 23:36:52 +08:00
* refactored stat_object refactored select_object_content refactor get_presigned_object_url refactor get_presigned_policy_form_data refactored upload-part-copy * fixed object.unwrap * update region * made client Arc * made client Arc * update client * update tests * update segmented_bytes * bench updated * cleanup version handling * cleanup of headers: multimap * added inner in Client * updated clients: added Into<String>in API * Separated http_client and shared client items in Client
20 lines
410 B
Bash
Executable File
20 lines
410 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
wget --quiet https://dl.min.io/server/minio/release/linux-amd64/minio
|
|
chmod +x minio
|
|
mkdir -p /tmp/certs
|
|
cp ./tests/public.crt ./tests/private.key /tmp/certs/
|
|
|
|
(MINIO_CI_CD=true \
|
|
MINIO_NOTIFY_WEBHOOK_ENABLE_miniojavatest=on \
|
|
MINIO_NOTIFY_WEBHOOK_ENDPOINT_miniojavatest=http://example.org/ \
|
|
./minio server /tmp/test-xl/{1...4}/ --certs-dir /tmp/certs/ &)
|
|
|
|
sleep 10
|
|
|
|
|
|
|