File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ CODENAME=$1
4+
5+ find _build -type f -name " *.exe" | while read -r entry; do
6+ # Exclude files ending with ppx.exe
7+ if [[ " $entry " == * ppx.exe ]]; then
8+ continue
9+ fi
10+
11+ ./buildkite/scripts/cache/manager.sh write " $entry " " apps/${CODENAME} /"
12+ done
Original file line number Diff line number Diff line change @@ -142,6 +142,9 @@ let build_artifacts
142142 # [ Cmd. run
143143 " ./buildkite/scripts/debian/write_to_cache.sh ${DebianVersions.lowerName
144144 spec.debVersion}"
145+ , Cmd. run
146+ " ./buildkite/scripts/apps/write_to_cache.sh ${DebianVersions.lowerName
147+ spec.debVersion}"
145148 ]
146149 , label = " Debian: Build ${labelSuffix spec}"
147150 , key = " build-deb-pkg${Optional/default Text " " spec.suffix}"
You can’t perform that action at this time.
0 commit comments