Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
Herbert Software
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Severin Sprenger
Herbert Software
Merge requests
!1
Cicd init
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Cicd init
cicd-init
into
main
Overview
0
Commits
9
Pipelines
0
Changes
2
Merged
Severin Sprenger
requested to merge
cicd-init
into
main
1 year ago
Overview
0
Commits
9
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
87dc7a2a
9 commits,
1 year ago
2 files
+
13
−
9
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
.cicd/
build-setup
.sh
→
.cicd/
setup-build
.sh
+
11
−
7
Options
@@ -12,19 +12,23 @@ curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.
echo
-e
"
\e
[92mDone installing arduino-cli
\e
[97m"
# Install stm32 boards
echo
-e
"
\e
[92mStart adding esp32 to board manager
\e
[97m"
arduino
--pref
"boardsmanager.additional.urls=https://github.com/stm32duino/BoardManagerFiles/raw/main/package_stmicroelectronics_index.json
\n
"
echo
-e
"
\e
[92mDone adding esp32 to board manager
\e
[97m"
echo
-e
"
\e
[92mStart init arduino config file
\e
[97m"
arduino-cli config init
echo
-e
"
\e
[92mDone init arduino config file
\e
[97m"
echo
-e
"
\e
[92mStart adding stm32 to board manager
\e
[97m"
arduino-cli config add board_manager.additional_urls https://github.com/stm32duino/BoardManagerFiles/raw/main/package_stmicroelectronics_index.json
echo
-e
"
\e
[92mDone adding stm32 to board manager
\e
[97m"
echo
-e
"
\e
[92mStart updating board index
\e
[97m"
arduino-cli core update-index
--config-file
.arduino-cli.yaml
arduino-cli core update-index
echo
-e
"
\e
[92mDone updating board index
\e
[97m"
echo
-e
"
\e
[92mStart installing
esp
32 boards
\e
[97m"
arduino-cli core
install
STMicroelectronics:stm32
--config-file
.arduino-cli.yaml
echo
-e
"
\e
[92mDone installing
esp
32 boards
\e
[97m"
echo
-e
"
\e
[92mStart installing
stm
32 boards
\e
[97m"
arduino-cli core
install
STMicroelectronics:stm32
echo
-e
"
\e
[92mDone installing
stm
32 boards
\e
[97m"
# Install all libraries
cd
-
echo
-e
"
\e
[92mStart installing dependencies
\e
[97m"
arduino-cli lib
install
"SD"
arduino-cli lib
install
"Bolder Flight Systems SBUS"
arduino-cli lib
install
"STM32duino LPS22HH"
arduino-cli lib
install
"STM32duino LSM6DSR"
Loading