forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try to workaround gdal-data corruption issue
- Loading branch information
Showing
4 changed files
with
26 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
# attempt to work around gdal-data deb getting corrupted when we download | ||
# two of them from the two arch builds at the same time. | ||
# This is a likely bug in buildkite agent | ||
# TODO: ticket it | ||
mkdir collated | ||
for dir in build-*; do | ||
echo "$dir" | ||
mv "$dir"/*.deb collated/ | ||
done | ||
|
||
aptly-upload \ | ||
--aptly-url https://apt-repo.kx.gd \ | ||
--retries 3 \ | ||
--repo kx-builds-jammy \ | ||
--series jammy \ | ||
collated/*.deb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -170,3 +170,6 @@ gdal/share | |
/build | ||
CMakeSettings.json | ||
out/ | ||
|
||
# kx | ||
build-jammy |