* add wheel build for linux * test fix * test self-hosted runner * test fix * update runner * update runner * update fix * init cicd * init cicd * test conda * update fix * update no need manual python deps * test fix bugs * test fix bugs * test fix bugs * fix bugs
		
			
				
	
	
		
			37 lines
		
	
	
		
			No EOL
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			No EOL
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
#
 | 
						|
# Copyright 2016 The BigDL Authors.
 | 
						|
#
 | 
						|
# Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
# you may not use this file except in compliance with the License.
 | 
						|
# You may obtain a copy of the License at
 | 
						|
#
 | 
						|
#     http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
#
 | 
						|
# Unless required by applicable law or agreed to in writing, software
 | 
						|
# distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
# See the License for the specific language governing permissions and
 | 
						|
# limitations under the License.
 | 
						|
#
 | 
						|
 | 
						|
# This is the default script with maven parameters to release bigdl-math for linux.
 | 
						|
# Note that if the maven parameters to build bigdl-math need to be changed,
 | 
						|
# make sure to change this file accordingly.
 | 
						|
# If you want to customize the release, please use release.sh and specify maven parameters instead.
 | 
						|
 | 
						|
set -e
 | 
						|
RUN_SCRIPT_DIR=$(cd $(dirname $0) ; pwd)
 | 
						|
echo $RUN_SCRIPT_DIR
 | 
						|
 | 
						|
if (( $# < 2)); then
 | 
						|
  echo "Usage: release_default_linux.sh version upload"
 | 
						|
  echo "Usage example: bash release_default_linux.sh default true"
 | 
						|
  exit -1
 | 
						|
fi
 | 
						|
 | 
						|
version=$1
 | 
						|
upload=$2
 | 
						|
 | 
						|
bash ${RUN_SCRIPT_DIR}/release.sh linux ${version} ${upload} |