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

Add renku-search to deploy and check-pr action #83

Merged
merged 2 commits into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions check-pr-description/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ The supported components are:
- `renku-ui` (that includes the `renku-ui-server` component, since the version is
aligned between the 2 components)
- `renku-data-services`
- `renku-search`

The reference will be stored in an output variable with the same name. For example,

Expand Down
8 changes: 8 additions & 0 deletions check-pr-description/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ outputs:
renku-data-services:
description: renku-data-services reference as specified in the command string
value: ${{ steps.check-string.outputs.renku-data-services }}
renku-search:
description: renku-search reference as specified in the command string
value: ${{ steps.check-string.outputs.renku-search }}
amalthea:
description: amalthea reference as specified in the command string
value: ${{ steps.check-string.outputs.amalthea}}
Expand Down Expand Up @@ -96,6 +99,11 @@ runs:
echo "renku-data-services reference: ${BASH_REMATCH[1]}"
echo "renku-data-services=@${BASH_REMATCH[1]}" >> $GITHUB_OUTPUT
fi
match="renku-search=(\S*)"
if [[ $command =~ $match ]]; then
echo "renku-search reference: ${BASH_REMATCH[1]}"
echo "renku-search=@${BASH_REMATCH[1]}" >> $GITHUB_OUTPUT
fi
match="#notest"
if [[ $command =~ $match ]]; then
test_enabled=false
Expand Down
1 change: 1 addition & 0 deletions deploy-renku/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ deploy-pr:
renku_notebooks: "${{ needs.check-deploy.outputs.renku-notebooks }}"
renku_ui: "${{ needs.check-deploy.outputs.renku-ui }}"
renku_data_services: "${{ needs.check-deploy.outputs.renku-data-services }}"
renku_search: "${{ needs.check-deploy.outputs.renku-search }}"
extra_values: "${{ needs.check-deploy.outputs.extra-values }}"
```

Expand Down
1 change: 1 addition & 0 deletions deploy-renku/deploy-dev-renku.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"renku-notebooks",
"renku-ui",
"renku-data-services",
"renku-search",
"amalthea",
]

Expand Down