Skip to content

Commit

Permalink
ci: Handle no diff case
Browse files Browse the repository at this point in the history
  • Loading branch information
danobi committed Jan 2, 2025
1 parent 5d44b5a commit 4e0c9a5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/kernels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ jobs:
- name: Build needed kernels
run: |
while IFS= read -r version; do
# If there's no diff, there will be a single empty version
[[ -n "$version" ]] || continue
echo "Building: ${version}"
./build.sh "$version"
done <<< "${{ steps.calculate.outputs.NEEDED_KERNELS }}"
Expand Down

0 comments on commit 4e0c9a5

Please sign in to comment.