2022-07-25 19:30:59 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
2023-02-22 16:11:29 +00:00
|
|
|
fedpkg --release f37 srpm 2>&1 | tee fedpkg.output
|
2022-07-25 19:30:59 +00:00
|
|
|
|
|
|
|
srpm_name=$(grep 'Wrote: ' fedpkg.output | cut -d' ' -f 2)
|
|
|
|
|
2022-08-16 16:42:01 +00:00
|
|
|
ls -alh "${srpm_name}"
|
|
|
|
|
2023-09-15 22:34:48 +00:00
|
|
|
copr-cli --debug build @dotnet-sig/dotnet-preview "${srpm_name}" --timeout 36000
|