Skip to content

Commit

Permalink
feat(ci): tests against shell workflow
Browse files Browse the repository at this point in the history
check cache only for schedule

n/a
  • Loading branch information
jdre-c8y committed Jul 22, 2024
1 parent f1b1de7 commit d769a96
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test-plugins-against-cockpit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
timeout-minutes: 30
runs-on: ubuntu-22.04
outputs:
shell_versions: ${{ steps.collect-shell-versions.outputs.shell_versions }}
shell_versions: ${{ steps.filter-versions.outputs.shell_versions }}
plugins_version: ${{ steps.extract-plugins-version.outputs.plugins_version }}

steps:
Expand Down Expand Up @@ -47,6 +47,7 @@ jobs:

- name: Retrieve cached JSON files
id: retrieve-cache
if: ${{ github.event_name == 'schedule' }}
uses: actions/cache@v4
with:
path: ./cache-files
Expand All @@ -55,7 +56,8 @@ jobs:
cache-json-files-${{ runner.os }}-plugins-${{ steps.extract-plugins-version.outputs.plugins_version }}
- name: Check and filter already tested versions
id: check-versions
id: filter-versions
if: ${{ github.event_name == 'schedule' }}
run: |
echo "Filtered shell versions:"
filtered_versions="[]"
Expand Down

0 comments on commit d769a96

Please sign in to comment.