Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ML-400] Solve the problem of obtaining DAL version #401

Merged
merged 21 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
be55d63
update spark to 3.3.3
minmingzhu Sep 18, 2023
6d2b055
Merge branch 'oap-project:master' into master
minmingzhu Sep 18, 2023
833444e
Merge branch 'oap-project:master' into master
minmingzhu Sep 19, 2023
23f0491
Merge branch 'oap-project:master' into master
minmingzhu Sep 19, 2023
f42d3be
Merge branch 'oap-project:master' into master
minmingzhu Sep 21, 2023
db6e64c
Merge branch 'oap-project:master' into master
minmingzhu Sep 26, 2023
f3f58bb
Merge branch 'oap-project:master' into master
minmingzhu Oct 9, 2023
262a746
Merge branch 'oap-project:master' into master
minmingzhu Oct 11, 2023
7802b2d
Merge branch 'oap-project:master' into master
minmingzhu Mar 5, 2024
efb9097
Merge branch 'oap-project:master' into master
minmingzhu Mar 25, 2024
c3f570b
Merge branch 'oap-project:master' into master
minmingzhu Mar 26, 2024
3bee6bb
Merge branch 'oap-project:master' into master
minmingzhu Jul 22, 2024
5d08ac0
Merge branch 'oap-project:master' into master
minmingzhu Jul 22, 2024
49bdc75
Merge branch 'oap-project:master' into master
minmingzhu Sep 10, 2024
0a44fbe
Merge branch 'oap-project:master' into master
minmingzhu Sep 10, 2024
7ff407c
Merge branch 'oap-project:master' into master
minmingzhu Sep 10, 2024
c29e617
Merge branch 'oap-project:master' into master
minmingzhu Oct 16, 2024
58b206e
Merge branch 'oap-project:master' into master
minmingzhu Oct 23, 2024
cc7f1e1
update
minmingzhu Oct 23, 2024
f4eadb5
Update dev_cron.yml
minmingzhu Oct 23, 2024
e6fe801
Update dev_cron.yml
minmingzhu Oct 23, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mllib-dal/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ fi

if [[ -n $DAALROOT ]]; then
if [[ -e $DAALROOT ]]; then
export ONEDAL_VERSION=$(echo "$DAALROOT" | awk -F '/' '{print $(NF)}')
export ONEDAL_VERSION=$(readlink -f "$DAALROOT" | awk -F '/' '{print $(NF)}')
fi
elif [[ -n $DALROOT ]]; then
if [[ -e $DALROOT ]]; then
export ONEDAL_VERSION=$(echo "$DALROOT" | awk -F '/' '{print $(NF)}')
export ONEDAL_VERSION=$(readlink -f "$DALROOT" | awk -F '/' '{print $(NF)}')
fi
else
echo DAALROOT not defined!
Expand Down
4 changes: 2 additions & 2 deletions mllib-dal/src/main/native/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ fi
if [[ -z $ONEDAL_VERSION ]]; then
if [[ -n $DAALROOT ]]; then
if [[ -e $DAALROOT ]]; then
export ONEDAL_VERSION=$(echo "$DAALROOT" | awk -F '/' '{print $(NF)}')
export ONEDAL_VERSION=$(readlink -f "$DAALROOT" | awk -F '/' '{print $(NF)}')
fi
elif [[ -n $DALROOT ]]; then
if [[ -e $DALROOT ]]; then
export ONEDAL_VERSION=$(echo "$DALROOT" | awk -F '/' '{print $(NF)}')
export ONEDAL_VERSION=$(readlink -f "$DALROOT" | awk -F '/' '{print $(NF)}')
fi
else
echo DAALROOT not defined!
Expand Down
Loading