forked from The-OpenROAD-Project/OpenROAD
-
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.
Merge pull request The-OpenROAD-Project#6162 from vvbandeira/deb-jenkins
Ubuntu 24.04 and RockyLinux9 support
- Loading branch information
Showing
7 changed files
with
197 additions
and
232 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,14 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [[ $# -ne 2 ]]; then | ||
echo "Error: This script requires exactly one argument." | ||
echo "usage: $0 <VERSION> <OS_NAME>" | ||
exit 1 | ||
fi | ||
|
||
for file in ../*${1}*; do | ||
base_name=$(basename "$file") | ||
name="${base_name%.*}" | ||
ext="${base_name##*.}" | ||
mv "$file" "${name}-${2}.${ext}" | ||
done |
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 |
---|---|---|
|
@@ -18,4 +18,5 @@ override_dh_shlibdeps: | |
override_dh_install: | ||
dh_install --sourcedir=/opt | ||
|
||
override_dh_auto_test: | ||
override_dh_dwz: |
Oops, something went wrong.