-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into jumin/fix_xdist
Signed-off-by: Jun Ki Min <[email protected]>
- Loading branch information
Showing
21 changed files
with
307 additions
and
210 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,6 @@ on: | |
branches: | ||
- 'releases/**' | ||
|
||
|
||
jobs: | ||
build_and_push_image_to_registry: | ||
name: Push Docker image to Docker Hub | ||
|
@@ -45,27 +44,32 @@ jobs: | |
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
|
||
# Deploy the docker container to the three test environments for feathr | ||
# Trigger Azure Web App webhooks to pull the latest nightly image | ||
deploy: | ||
runs-on: ubuntu-latest | ||
needs: build_and_push_image_to_registry | ||
|
||
|
||
|
||
steps: | ||
- name: Deploy to Feathr Purview Registry Azure Web App | ||
id: deploy-to-purview-webapp | ||
- name: Deploy to Azure Web App feathr-registry-purview | ||
id: deploy-to-feathr-registry-purview | ||
uses: distributhor/[email protected] | ||
env: | ||
webhook_url: ${{ secrets.AZURE_WEBAPP_FEATHR_REGISTRY_PURVIEW_WEBHOOK }} | ||
|
||
- name: Deploy to Azure Web App feathr-registry-purview-rbac | ||
id: deploy-to-feathr-registry-purview-rbac | ||
uses: distributhor/[email protected] | ||
env: | ||
webhook_url: ${{ secrets.AZURE_WEBAPP_FEATHR_PURVIEW_REGISTRY_WEBHOOK }} | ||
webhook_url: ${{ secrets.AZURE_WEBAPP_FEATHR_REGISTRY_PURVIEW_RBAC_WEBHOOK }} | ||
|
||
- name: Deploy to Feathr RBAC Registry Azure Web App | ||
id: deploy-to-rbac-webapp | ||
- name: Deploy to Azure Web App feathr-registry-sql | ||
id: deploy-to-feathr-registry-sql | ||
uses: distributhor/[email protected] | ||
env: | ||
webhook_url: ${{ secrets.AZURE_WEBAPP_FEATHR_RBAC_REGISTRY_WEBHOOK }} | ||
- name: Deploy to Feathr SQL Registry Azure Web App | ||
id: deploy-to-sql-webapp | ||
webhook_url: ${{ secrets.AZURE_WEBAPP_FEATHR_REGISTRY_SQL_WEBHOOK }} | ||
|
||
- name: Deploy to Azure Web App feathr-registry-sql-rbac | ||
id: deploy-to-feathr-registry-sql-rbac | ||
uses: distributhor/[email protected] | ||
env: | ||
webhook_url: ${{ secrets.AZURE_WEBAPP_FEATHR_SQL_REGISTRY_WEBHOOK }} | ||
webhook_url: ${{ secrets.AZURE_WEBAPP_FEATHR_REGISTRY_SQL_RBAC_WEBHOOK }} |
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
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
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
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 +1,10 @@ | ||
__version__ = "0.9.0-rc2" | ||
__version__ = "0.9.0-rc2" | ||
|
||
def get_version(): | ||
return __version__ | ||
|
||
# Decouple Feathr MAVEN Version from Feathr Python SDK Version | ||
import os | ||
def get_maven_artifact_fullname(): | ||
maven_artifact_version = os.environ.get("MAVEN_ARTIFACT_VERSION", __version__) | ||
return f"com.linkedin.feathr:feathr_2.12:{maven_artifact_version}" |
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.