Skip to content

Commit c9ac151

Browse files
author
rposts
committed
Initial commit
1 parent afce420 commit c9ac151

3 files changed

Lines changed: 23 additions & 0 deletions

File tree

.build-template.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
template: templates/loz-script-project.yaml
2+
overrides:
3+
artifacts:
4+
- type: script
5+
version: RELEASE.2025-09-07T16-13-09Z
6+
build_script:
7+
repo_name: linux-on-ibm-z-scripts
8+
path: src/build.sh
9+
docker_image: ubuntu:22.04

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# MinIO
2+
MinIO is a high-performance, S3-compatible object storage solution released under the GNU AGPL v3.0 license. Designed for speed and scalability, it powers AI/ML, analytics, and data-intensive workloads with industry-leading performance.
3+
4+
Additional information available [here](https://github.com/minio/minio).

src/build.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
set -e -o pipefail
3+
read -ra arr <<< "$@"
4+
version=${arr[1]}
5+
trap 0 1 2 ERR
6+
# Ensure sudo is installed
7+
apt-get update && apt-get install sudo -y
8+
bash /tmp/linux-on-ibm-z-scripts/Minio/${version}/build_minio.sh -y
9+
tar cvfz minio-${version}-linux-s390x.tar.gz -C $PWD/bin minio mc
10+
exit 0

0 commit comments

Comments
 (0)