-
Notifications
You must be signed in to change notification settings - Fork 348
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 cp-odh-pr-50
- Loading branch information
Showing
26 changed files
with
480 additions
and
156 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: "Install UI dependencies" | ||
description: "Install UI dependencies; fail the build if the lock file is not up-to-date" | ||
|
||
inputs: | ||
working_dir: | ||
description: "Elyra path" | ||
required: false | ||
default: "." | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Go to working directory | ||
shell: bash | ||
run: | | ||
echo "Step: Go to working directory" | ||
cd ${{ inputs.working_dir }} | ||
- name: Install dependencies | ||
shell: bash | ||
run: | | ||
echo "Step: Install dependencies" | ||
make yarn-install | ||
- name: "Check yarn.lock" | ||
shell: bash | ||
run: | | ||
echo "Step: Check yarn.lock" | ||
git diff yarn.lock; | ||
[ "0" == "$(git diff yarn.lock | wc -l | tr -d ' ')" ] |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: "Install Yarn" | ||
description: "Install Yarn" | ||
|
||
inputs: | ||
working_dir: | ||
description: "Elyra path" | ||
required: false | ||
default: "." | ||
version: | ||
description: "Yarn version" | ||
required: true | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Go to working directory | ||
shell: bash | ||
run: | | ||
echo "Step: Go to working directory" | ||
cd ${{ inputs.working_dir }} | ||
- name: Install | ||
shell: bash | ||
run: | | ||
echo "Step: Install" | ||
corepack prepare yarn@${{ inputs.version }} --activate | ||
yarn set version ${{ inputs.version }} | ||
echo "Yarn version: $(yarn --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
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,5 +1,4 @@ | ||
{ | ||
"packageManager": "python", | ||
"packageName": "elyra_code_snippet_extension", | ||
"uninstallInstructions": "Use your Python package manager (pip, conda, etc.) to uninstall the package elyra_code_snippet_extension" | ||
} |
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,5 +1,4 @@ | ||
{ | ||
"packageManager": "python", | ||
"packageName": "elyra_code_viewer_extension", | ||
"uninstallInstructions": "Use your Python package manager (pip, conda, etc.) to uninstall the package elyra_code_viewer_extension" | ||
} |
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,5 +1,4 @@ | ||
{ | ||
"packageManager": "python", | ||
"packageName": "elyra_metadata_common", | ||
"uninstallInstructions": "Use your Python package manager (pip, conda, etc.) to uninstall the package elyra_metadata_common" | ||
} |
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,5 +1,4 @@ | ||
{ | ||
"packageManager": "python", | ||
"packageName": "elyra_metadata_extension", | ||
"uninstallInstructions": "Use your Python package manager (pip, conda, etc.) to uninstall the package elyra_metadata_extension" | ||
} |
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,5 +1,4 @@ | ||
{ | ||
"packageManager": "python", | ||
"packageName": "elyra_pipeline_editor_extension", | ||
"uninstallInstructions": "Use your Python package manager (pip, conda, etc.) to uninstall the package elyra_pipeline_editor_extension" | ||
} |
Oops, something went wrong.