File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -64,19 +64,21 @@ jobs:
6464 # Create directory structure and copy recipe
6565 rel_path=$(dirname "$recipe")
6666 if [ "$pkg_type" = "static" ] || [ "$pkg_type" = "dynamic" ]; then
67+ echo "BINCACHE: $recipe (pkg_type: $pkg_type)"
6768 mkdir -p "/tmp/bincache-recipes/$rel_path"
6869 cp "$recipe" "/tmp/bincache-recipes/$recipe"
6970 else
71+ echo "PKGCACHE: $recipe (pkg_type: $pkg_type)"
7072 mkdir -p "/tmp/pkgcache-recipes/$rel_path"
7173 cp "$recipe" "/tmp/pkgcache-recipes/$recipe"
7274 fi
7375 done
7476
7577 echo "=== Bincache recipes (static/dynamic) ==="
76- find /tmp/bincache-recipes -name "*.yaml" 2>/dev/null | wc -l
78+ find /tmp/bincache-recipes -name "*.yaml" -type f
7779
7880 echo "=== Pkgcache recipes (other pkg_types) ==="
79- find /tmp/pkgcache-recipes -name "*.yaml" 2>/dev/null | wc -l
81+ find /tmp/pkgcache-recipes -name "*.yaml" -type f
8082
8183 - name : Generate bincache metadata
8284 env :
You can’t perform that action at this time.
0 commit comments