Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-esp32
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-esp32
Commits
9f8f0573
Commit
9f8f0573
authored
Jul 04, 2018
by
pacucha42
Committed by
Me No Dev
Jul 04, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* relnotes handling update (#1592)
* script exec fails on curl error
parent
a835bb26
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
7 deletions
+47
-7
tools/build-release.sh
tools/build-release.sh
+4
-4
tools/deploy.sh
tools/deploy.sh
+43
-3
No files found.
tools/build-release.sh
View file @
9f8f0573
...
...
@@ -36,6 +36,8 @@ function downloadAndMergePackageJSON()
#curl --verbose -sH "Authorization: token $curlAuthToken" -L -o "$old_json" "$jsonLink"
curl
-L
-o
"
$old_json
"
"
$jsonLink
?access_token=
$curlAuthToken
"
if
[
$?
-ne
0
]
;
then
echo
"FAILED:
$?
=> aborting"
;
exit
1
;
fi
#curl -L -o "$old_json" "$jsonLink"
...
...
@@ -255,10 +257,7 @@ echo " - creating package ZIP archive (${package_name_zip})..."
pushd
$releaseDir
>
/dev/null
zip
-qr
$package_name_zip
$package_name
if
[
$?
-ne
0
]
;
then
echo
" !error: failed to create
${
package_name_zip
}
(ZIP errno:
$?
) => aborting"
exit
1
fi
if
[
$?
-ne
0
]
;
then
echo
" !error: failed to create
${
package_name_zip
}
(ZIP errno:
$?
) => aborting"
;
exit
1
;
fi
# Calculate SHA sum and size of ZIP archive
sha
=
`
shasum
-a
256
$package_name_zip
|
cut
-f
1
-d
' '
`
...
...
@@ -296,6 +295,7 @@ set +e
releasesJson
=
$releaseDir
/releases.json
curl
-sH
"Authorization: token
$curlAuth
"
https://api.github.com/repos/
$TRAVIS_REPO_SLUG
/releases
>
$releasesJson
if
[
$?
-ne
0
]
;
then
echo
"FAILED:
$?
=> aborting"
;
exit
1
;
fi
prev_release
=
$(
jq
-e
-r
'. | map(select(.draft == false and .prerelease == false)) | sort_by(.created_at | - fromdateiso8601) | .[0].tag_name'
${
releasesJson
}
)
prev_any_release
=
$(
jq
-e
-r
'. | map(select(.draft == false)) | sort_by(.created_at | - fromdateiso8601) | .[0].tag_name'
${
releasesJson
}
)
...
...
tools/deploy.sh
View file @
9f8f0573
...
...
@@ -77,6 +77,10 @@ shopt -u nocasematch
# other lines: converted to bullets
# empty lines ignored
# if '* ' found as a first char pair, it's converted to '- ' to keep bulleting unified
echo
Preparing release notes
echo
-----------------------
echo
"Tag's message:"
relNotesRaw
=
`
git show
-s
--format
=
%b
$varTagName
`
readarray
-t
msgArray
<<<
"
$relNotesRaw
"
...
...
@@ -93,12 +97,19 @@ if [ $arrLen > 3 ]; then
if
[
"
${
oneLine
:0:2
}
"
==
"* "
]
;
then
oneLine
=
$(
echo
${
oneLine
/\*/-
}
)
;
fi
if
[
"
${
oneLine
:0:2
}
"
!=
"- "
]
;
then
releaseNotes+
=
"- "
;
fi
releaseNotes+
=
"
$oneLine
\\
n"
#debug output
echo
"
${
oneLine
}
"
fi
fi
let
ind
=
$ind
+1
done
echo
"<tag's message end>"
else
releaseNotes
=
"#### Release of
$varTagName
\\
n"
#debug output
echo
" Release of
$varTagName
"
fi
# - list of commits (commits.txt must exit in the output dir)
...
...
@@ -107,11 +118,18 @@ if [ -e "$commitFile" ]; then
releaseNotes+
=
"
\\
n##### Commits
\\
n"
#debug output
echo
echo
"Commits:"
IFS
=
$'
\n
'
for
next
in
`
cat
$commitFile
`
do
IFS
=
' '
read
-r
commitId commitMsg
<<<
"
$next
"
releaseNotes+
=
"- [
$commitId
](https://github.com/
$varRepoSlug
/commit/
$commitId
)
$commitMsg
\\
n"
#debug output
echo
" - [
$commitId
](https://github.com/
$varRepoSlug
/commit/
$commitId
)
$commitMsg
"
done
rm
-f
$commitFile
fi
...
...
@@ -124,19 +142,32 @@ echo "Checking for possible releases of current tag $varTagName..."
HTTP_RESPONSE
=
$(
curl
-L
--silent
--write-out
"HTTPSTATUS:%{http_code}"
https://api.github.com/repos/
$varRepoSlug
/releases/tags/
$varTagName
?access_token
=
$varAccessToken
)
HTTP_BODY
=
$(
echo
$HTTP_RESPONSE
|
sed
-e
's/HTTPSTATUS\:.*//g'
)
HTTP_STATUS
=
$(
echo
$HTTP_RESPONSE
|
tr
-d
'\n'
|
sed
-e
's/.*HTTPSTATUS://'
)
echo
" HTTP server response code:
$HTTP_STATUS
"
# if the release exists, append/update recent files to its assets vector
if
[
$HTTP_STATUS
-eq
200
]
;
then
releaseId
=
$(
echo
$HTTP_BODY
| jq
-r
'.id'
)
echo
" -
$varTagName
release found (id
$releaseId
)"
#merge release notes and overwrite pre-release flag. all other attributes remain unchanged
releaseNotesGH
=
$(
echo
$HTTP_BODY
| jq
-r
'.body'
)
releaseNotes
=
"
$releaseNotesGH
\\
n
$releaseNotes
"
echo
" ... updating release notes and pre-release flag"
curlData
=
"{
\"
body
\"
:
\"
$releaseNotes
\"
,
\"
prerelease
\"
:
$varPrerelease
}"
curl
--data
"
$curlData
"
https://api.github.com/repos/
$varRepoSlug
/releases/
$releaseId
?access_token
=
$varAccessToken
if
[
$?
-ne
0
]
;
then
echo
"FAILED:
$?
=> aborting"
;
exit
1
;
fi
#... or create a new release record
else
curlData
=
"{
\"
tag_name
\"
:
\"
$varTagName
\"
,
\"
target_commitish
\"
:
\"
master
\"
,
\"
name
\"
:
\"
v
$varTagName
\"
,
\"
body
\"
:
\"
$releaseNotes
\"
,
\"
draft
\"
: false,
\"
prerelease
\"
:
$varPrerelease
}"
#echo "DEBUG: curl --data \"${curlData}\" https://api.github.com/repos/${varRepoSlug}/releases?access_token=$varAccessToken | jq -r '.id'"
releaseId
=
$(
curl
--data
"
$curlData
"
https://api.github.com/repos/
$varRepoSlug
/releases?access_token
=
$varAccessToken
| jq
-r
'.id'
)
echo
" - new release created for
$varTagName
(id
$releaseId
)"
if
[
$?
-ne
0
]
;
then
echo
"FAILED:
$?
=> aborting"
;
exit
1
;
fi
fi
# Assets defined by dir contents
...
...
@@ -154,13 +185,22 @@ echo varAssets: $varAssets
#Upload additional assets
if
[
!
-z
$varAssets
]
;
then
echo
echo
"Uploading assets:"
echo
"-----------------"
curlAuth
=
"Authorization: token
$varAccessToken
"
for
filename
in
$(
echo
$varAssets
|
tr
";"
"
\n
"
)
do
echo
" -
${
filename
}
..."
curl
-X
POST
-sH
"
$curlAuth
"
-H
"Content-Type: application/octet-stream"
--data-binary
@
"
$filename
"
https://uploads.github.com/repos/
$varRepoSlug
/releases/
$releaseId
/assets?name
=
$(
basename
$filename
)
if
[
$?
-ne
0
]
;
then
echo
"FAILED:
$?
=> aborting"
;
exit
1
;
fi
echo
echo
"OK"
echo
echo
Uploading
$filename
...
curl
-X
POST
-sH
"
$curlAuth
"
-H
"Content-Type: application/octet-stream"
--data-binary
@
"
$filename
"
https://uploads.github.com/repos/
$varRepoSlug
/releases/
$releaseId
/assets?name
=
$(
basename
$filename
)
done
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment