Skip to content

Commit

Permalink
CI: add support for Debian12-arm in release_artifacts
Browse files Browse the repository at this point in the history
Signed-off-by: Andreea Andrisan <[email protected]>
  • Loading branch information
AAndrisa committed Jun 25, 2024
1 parent 5a82086 commit a692920
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion CI/azure/prepare_assets.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash -e

release_artifacts() {
local deb_linux_assets='Fedora-34 Fedora-28 Ubuntu-20.04 Ubuntu-22.04 Debian-11 openSUSE-15.4 CentOS-7'
local deb_linux_assets='Fedora-34 Fedora-28 Ubuntu-20.04 Ubuntu-22.04 Debian-11 Debian-12 openSUSE-15.4 CentOS-7'
cd "${BUILD_ARTIFACTSTAGINGDIRECTORY}"
for i in $deb_linux_assets; do
cd "Linux-${i}"
Expand Down Expand Up @@ -59,6 +59,11 @@ release_artifacts() {
rm -r "Ubuntu-${i}"
done

cd "${BUILD_ARTIFACTSTAGINGDIRECTORY}/Debian12-arm"
find . -name '*.deb' -exec mv {} ../ ";"
find . -name '*.tar.gz' -exec mv {} ../ ";"
rm -r ../Debian12-arm

}

swdownloads_artifacts() {
Expand Down

0 comments on commit a692920

Please sign in to comment.