mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
- Upgrade from Python 3.6 to 3.8 in packaging pipeline. - Raise build.py minimum required Python version.
21 lines
477 B
Bash
Executable file
21 lines
477 B
Bash
Executable file
#!/bin/bash
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the MIT License.
|
|
|
|
# Get directory this script is in
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
OS=$(uname -s)
|
|
|
|
if [ "$OS" = "Darwin" ]; then
|
|
DIR_OS="MacOS"
|
|
else
|
|
DIR_OS="Linux"
|
|
fi
|
|
|
|
if [[ "$*" == *"--ios"* ]]; then
|
|
DIR_OS="iOS"
|
|
elif [[ "$*" == *"--android"* ]]; then
|
|
DIR_OS="Android"
|
|
fi
|
|
|
|
python3 $DIR/tools/ci_build/build.py --build_dir $DIR/build/$DIR_OS "$@"
|