Skip to content

Commit

Permalink
test c# and python on container
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <yury.fridlyand@improving.com>
  • Loading branch information
Yury-Fridlyand committed Sep 20, 2024
1 parent 3ed3dd3 commit c73316e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-python-wrapper/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ runs:

- name: Install Python software dependencies
shell: bash
if: !contains(inputs.os, 'amazon-linux')
if: ${{ !contains(inputs.os, 'amazon-linux') }}
run: |
# Disregarding PEP 668 as it addresses package managers conflicts, which is not applicable in the CI scope.
INSTALL_FLAGS=`if [[ "${{ inputs.os }}" =~ .*"macos".* ]]; then echo "--break-system-packages"; else echo ""; fi`
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/csharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ jobs:
- name: Install git
run: |
yum update
yum install -y git tar findutils
yum install -y git tar findutils libicu
- uses: actions/checkout@v4
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ concurrency:

# TODO matrix by workflow (`uses`) - not supported yet by GH
jobs:
check-input:
runs-on: ubuntu-latest
steps:
- run: false
if: github.event_name == 'workflow_dispatch' && inputs.core == false && inputs.java == false && inputs.python == false && inputs.node == false && inputs.java == false && inputs.csharp == false && inputs.go == false

run-full-tests-for-core:
if: (github.repository_owner == 'valkey-io' && github.event_name == 'schedule') || (github.event_name == 'workflow_dispatch' && inputs.core == true)
uses: ./.github/workflows/rust.yml
Expand Down

0 comments on commit c73316e

Please sign in to comment.