Build log formatting
Mockband / build (push) Successful in 27s Details

This commit is contained in:
Neale Pickett 2024-01-04 23:19:10 -07:00
parent 7f32dec9f3
commit 3c80053cb7
2 changed files with 6 additions and 9 deletions

View File

@ -13,7 +13,7 @@ mkdir -p out/
while read variant vid pid flags; do
log
log Building $vid $pid $product
log "Building $variant ($vid:$pid)"
log
# We can overload build.extra_flags from boards.txt,

View File

@ -7,19 +7,16 @@ VERSION=$GITHUB_REF_NAME
BASE=$GITHUB_SERVER_URL/api/packages/$GITHUB_ACTOR/generic/$PACKAGE/$VERSION
echo "=== Delete existing version: $VERSION"
curl \
--include \
--user "$GITHUB_ACTOR:$PACKAGE_API_TOKEN" \
--request DELETE \
$BASE
for path in "$@"; do
fn=$(basename "$path")
echo "=== Upload $VERSION/$fn"
curl \
--user "$GITHUB_ACTOR:$PACKAGE_API_TOKEN" \
--request DELETE \
$BASE/$fn
curl \
--fail \
--include \
--user "$GITHUB_ACTOR:$PACKAGE_API_TOKEN" \
--upload-file "$path" \
$BASE/$fn