ipex-llm/python/llm/dev/release_default_windows.sh
Pingchuan Ma (Henry) 141febec1f Add dev wheel building script for LLM package on Windows (#8238)
* Add dev wheel building script for LLM package on Windows

* delete conda

* delete python version check

* minor adjust

* wheel name fixed

* test check

* test fix

* change wheel name
2023-06-01 11:55:26 +08:00

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_windows.sh version upload"
echo "Usage example: bash release_default_windows.sh default true"
exit -1
fi
version=$1
upload=$2
bash ${RUN_SCRIPT_DIR}/release.sh windows ${version} ${upload}