Skip to content

Commit

Permalink
build-repository.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
phlax committed Aug 17, 2024
1 parent 1430b38 commit 0bcda9f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions build-repository.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,26 @@ set -e -o pipefail
mkdir -p /opt/build/cache/repository
ls /opt/build/cache/repository | (grep -E '^v[0-9]+\.[0-9]+\.[0-9]+' || echo '') | sort -u > debs/custom-excludes.txt

EXCLUDED=(
"v1.29.7"
"v1.29.6"
"v1.29.5"
"v1.29.4"
"v1.29.3"
"v1.29.2"
"v1.29.1"
"v1.29.0"
"v1.28.5"
"v1.28.4"
"v1.28.3"
"v1.28.2"
"v1.28.1"
"v1.28.0")

for version in "${EXCLUDED[@]}"; do
echo $version >> debs/custom-excludes.txt
done

bazel run \
--config=debs-ci \
//tools/tarball:unpack \
Expand Down

0 comments on commit 0bcda9f

Please sign in to comment.