-
Notifications
You must be signed in to change notification settings - Fork 930
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
21 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Download minio/mc | ||
description: Download minio/mc | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Download minio/mc | ||
shell: bash | ||
run: | | ||
set -eux | ||
mkdir -p "$(go env GOPATH)/bin" | ||
# Download minio ready to include in dependencies for system tests. | ||
curl -sSfL https://dl.min.io/server/minio/release/linux-amd64/minio --output "$(go env GOPATH)/bin/minio" | ||
chmod +x "$(go env GOPATH)/bin/minio" | ||
# Also grab the latest minio client to maintain compatibility with the server. | ||
curl -sSfL https://dl.min.io/client/mc/release/linux-amd64/mc --output "$(go env GOPATH)/bin/mc" | ||
chmod +x "$(go env GOPATH)/bin/mc" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters