Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
phlax committed Aug 16, 2024
1 parent 293e78c commit f9ad69b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/envoy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,16 @@ jobs:
key: ${{ steps.versions.outputs.hash }}
path: /tmp/repository
- run: |
mkdir -p /tmp/repository
# check if there is anything to do
bazel build --config=ci //:patch_versions
cat bazel-bin/patch_versions.txt
patch_versions=$(cat bazel-bin/patch_versions.txt | sort -u)
version_dirs=$(ls /tmp/repository | grep -E '^v[0-9]+\.[0-9]+\.[0-9]+' | sort -u)
missing=$(comm -23 <(echo "$patch_versions") <(echo "$version_dirs"))
echo "$missing"
exit 1
Expand Down

0 comments on commit f9ad69b

Please sign in to comment.