-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [Category] Fix and add categories to functions (#808) * [Category] Fix and add categories to functions * bump version in structured * test is not valid in huggingface_serving * Fix duplicated footer * Fix duplicated footer * revert python version change as it will be done in another PR * comments * comments * Bump python:3.6 to python:3.9 (#810) * [Describe] Align describe to new pandas version (#812) * [Describe] Align describe to new pandas version * minor test fix * update mlrun version * add dask to requirements * remove dask * update numpy version * debug * debug * debug * remove dask tests * remove debug code * [get_offline_features] Updated to mlrun 1.6.3 (#813) * [Feature-selection] Replace matplotlib with plotly (#815) * Iguazio-cicd user token updated Iguazio-cicd user token updated in repo secrets: https://github.com/mlrun/functions/settings/secrets/actions MARKETPLACE_ACCESS_TOKEN_V3 new token gh...Zmf was set around April * forcing iguazio-cicd auth forcing iguazio-cicd to deal with Author identity unknown * checkout@v3 to v4 and echo * [Mlflow_utils] - mlflow model server (#811) * mlflow server * small fix to test * small fixes to ms and nb * small fixes to mlrun version * update requirements lightgbm * added req * Added xgboost to req --------- Co-authored-by: Avi Asulin <[email protected]> * [Mlflow] Remove mlflow tag (#825) * remove mlflow tag * remove mlflow tag --------- Co-authored-by: Avi Asulin <[email protected]> * align feature_selection yaml --------- Co-authored-by: Avi Asulin <[email protected]> Co-authored-by: Yonatan Shelach <[email protected]> Co-authored-by: rokatyy <[email protected]> Co-authored-by: Katerina Molchanova <[email protected]> Co-authored-by: nashpaz123 <[email protected]> Co-authored-by: ZeevRispler <[email protected]>
- Loading branch information
1 parent
8f3f226
commit 639bb27
Showing
42 changed files
with
1,860 additions
and
309 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ jobs: | |
run: echo "::set-output name=branch::${GITHUB_REF#refs/heads/}" | ||
id: myref | ||
|
||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- id: set-matrix | ||
# This is very hacky, but it goes like that: | ||
# 1) Associate base_ref with origin/base_ref since actions/checkout doesn't do it, if we don't do that we won't be able to check the actual diff | ||
|
@@ -63,7 +63,7 @@ jobs: | |
steps: | ||
# Source | ||
- name: Checkout current repo | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
path: functions | ||
# Install python 3.9 | ||
|
@@ -106,11 +106,11 @@ jobs: | |
run: echo "::set-output name=branch::${GITHUB_REF#refs/heads/}" | ||
id: branch | ||
- name: Checkout current repo | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
path: functions | ||
- name: Checkout Marketplace | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: mlrun/marketplace | ||
path: marketplace | ||
|
@@ -136,6 +136,7 @@ jobs: | |
env: | ||
GITHUB_TOKEN: ${{ secrets.MARKETPLACE_ACCESS_TOKEN_V3 }} | ||
USERNAME: iguazio-cicd | ||
USEREMAIL: [email protected] | ||
REPO_PATH: marketplace | ||
BASE_REPO: mlrun | ||
BASE_BRANCH: master | ||
|
@@ -153,24 +154,30 @@ jobs: | |
exit 1; | ||
}; | ||
git config --local user.name $USERNAME | ||
git config --local user.email $USEREMAIL | ||
git branch --set-upstream-to origin/master | ||
git remote -v | ||
echo "Checking out [$BRANCH_NAME]..." | ||
echo "1. Checking out [$BRANCH_NAME]..." | ||
git checkout -b $BRANCH_NAME | ||
echo "Checking out [$BASE_BRANCH]..." | ||
echo "2. Checking out [$BASE_BRANCH]..." | ||
git checkout $BASE_BRANCH | ||
git pull | ||
echo "Checking out [$BRANCH_NAME]..." | ||
echo "3. Checking out [$BRANCH_NAME]..." | ||
git checkout $BRANCH_NAME | ||
echo "3a. merging" | ||
git merge $BASE_BRANCH | ||
echo "3b. status" | ||
git status | ||
git status --ignored | ||
find . -type f | xargs ls -artl | ||
echo "3b. add" | ||
git add --all | ||
git status | ||
git status --ignored | ||
echo "Commiting changes..." | ||
echo "4. Commiting changes..." | ||
echo "4a. git rev-parse" | ||
git rev-parse --show-toplevel | ||
echo "4b. git commit" | ||
git commit -a -m "Automatically generated by github-worflow[bot] for commit: $COMMIT_SHA" | ||
git status | ||
git status --ignored | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,4 +29,4 @@ spec: | |
- xgboost==1.3.1 | ||
- lifelines==0.22.8 | ||
url: '' | ||
version: 1.1.0 | ||
version: 1.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
scikit-learn~=1.0.2 | ||
plotly~=5.16.1 | ||
pytest~=7.0.1 | ||
pandas~=1.3.5 | ||
matplotlib~=3.5.1 | ||
seaborn~=0.11.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.