mirror of
				https://github.com/minio/minio.git
				synced 2025-10-30 00:05:02 -04:00 
			
		
		
		
	this is minor PR that supports building on RISC-V 64, this PR is for compilation only. There is no guarantee that code is tested and will work in production.
		
			
				
	
	
		
			38 lines
		
	
	
		
			972 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			972 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| set -e
 | |
| # Enable tracing if set.
 | |
| [ -n "$BASH_XTRACEFD" ] && set -x
 | |
| 
 | |
| function _init() {
 | |
| 	## All binaries are static make sure to disable CGO.
 | |
| 	export CGO_ENABLED=0
 | |
| 
 | |
| 	## List of architectures and OS to test coss compilation.
 | |
| 	SUPPORTED_OSARCH="linux/ppc64le linux/mips64 linux/amd64 linux/arm64 linux/s390x darwin/arm64 darwin/amd64 freebsd/amd64 windows/amd64 linux/arm linux/386 netbsd/amd64 linux/mips openbsd/amd64 linux/riscv64"
 | |
| }
 | |
| 
 | |
| function _build() {
 | |
| 	local osarch=$1
 | |
| 	IFS=/ read -r -a arr <<<"$osarch"
 | |
| 	os="${arr[0]}"
 | |
| 	arch="${arr[1]}"
 | |
| 	package=$(go list -f '{{.ImportPath}}')
 | |
| 	printf -- "--> %15s:%s\n" "${osarch}" "${package}"
 | |
| 
 | |
| 	# go build -trimpath to build the binary.
 | |
| 	export GOOS=$os
 | |
| 	export GOARCH=$arch
 | |
| 	export GO111MODULE=on
 | |
| 	go build -trimpath -tags kqueue -o /dev/null
 | |
| }
 | |
| 
 | |
| function main() {
 | |
| 	echo "Testing builds for OS/Arch: ${SUPPORTED_OSARCH}"
 | |
| 	for each_osarch in ${SUPPORTED_OSARCH}; do
 | |
| 		_build "${each_osarch}"
 | |
| 	done
 | |
| }
 | |
| 
 | |
| _init && main "$@"
 |