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
9339c00d
Unverified
Commit
9339c00d
authored
Aug 02, 2024
by
Lucas Saavedra Vaz
Committed by
GitHub
Aug 02, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): Add JSON install test (#10104)
parent
5aaa49e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
1 deletion
+47
-1
.github/scripts/on-release.sh
.github/scripts/on-release.sh
+47
-1
No files found.
.github/scripts/on-release.sh
View file @
9339c00d
...
...
@@ -421,7 +421,53 @@ if [ "$RELEASE_PRE" == "false" ]; then
fi
fi
# Upload package JSONs (temporary halted to fix json generation)
# Test the package JSONs
echo
"Installing arduino-cli ..."
source
./.github/scripts/install-arduino-cli.sh
echo
"Testing
$PACKAGE_JSON_DEV
install ..."
echo
"Updating index ..."
arduino-cli core update-index
--additional-urls
"file://
$OUTPUT_DIR
/
$PACKAGE_JSON_DEV
"
if
[
$?
-ne
0
]
;
then
echo
"ERROR: Failed to update index (
$?
)"
;
exit
1
;
fi
echo
"Installing esp32 ..."
arduino-cli core
install
esp32:esp32
if
[
$?
-ne
0
]
;
then
echo
"ERROR: Failed to install esp32 (
$?
)"
;
exit
1
;
fi
echo
"Compiling example ..."
arduino-cli compile
--fqbn
espressif:esp32:esp32
$GITHUB_WORKSPACE
/libraries/ESP32/examples/CI/CIBoardsTest/CIBoardsTest.ino
if
[
$?
-ne
0
]
;
then
echo
"ERROR: Failed to compile example (
$?
)"
;
exit
1
;
fi
echo
"Uninstalling esp32 ..."
arduino-cli core uninstall esp32:esp32
if
[
$?
-ne
0
]
;
then
echo
"ERROR: Failed to uninstall esp32 (
$?
)"
;
exit
1
;
fi
echo
"Test successful!"
if
[
"
$RELEASE_PRE
"
==
"false"
]
;
then
echo
"Testing
$PACKAGE_JSON_REL
install ..."
echo
"Updating index ..."
arduino-cli core update-index
--additional-urls
"file://
$OUTPUT_DIR
/
$PACKAGE_JSON_REL
"
if
[
$?
-ne
0
]
;
then
echo
"ERROR: Failed to update index (
$?
)"
;
exit
1
;
fi
echo
"Installing esp32 ..."
arduino-cli core
install
esp32:esp32
if
[
$?
-ne
0
]
;
then
echo
"ERROR: Failed to install esp32 (
$?
)"
;
exit
1
;
fi
echo
"Compiling example ..."
arduino-cli compile
--fqbn
espressif:esp32:esp32
$GITHUB_WORKSPACE
/libraries/ESP32/examples/CI/CIBoardsTest/CIBoardsTest.ino
if
[
$?
-ne
0
]
;
then
echo
"ERROR: Failed to compile example (
$?
)"
;
exit
1
;
fi
echo
"Uninstalling esp32 ..."
arduino-cli core uninstall esp32:esp32
if
[
$?
-ne
0
]
;
then
echo
"ERROR: Failed to uninstall esp32 (
$?
)"
;
exit
1
;
fi
echo
"Test successful!"
fi
# Upload package JSONs
echo
"Uploading
$PACKAGE_JSON_DEV
..."
echo
"Download URL: "
`
git_safe_upload_asset
"
$OUTPUT_DIR
/
$PACKAGE_JSON_DEV
"
`
echo
"Pages URL: "
`
git_safe_upload_to_pages
"
$PACKAGE_JSON_DEV
"
"
$OUTPUT_DIR
/
$PACKAGE_JSON_DEV
"
`
...
...
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