FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Arduino_Core_STM32/.github/workflows/Arduino-build.yml at main · stm32duino/Arduino_Core_STM32 · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
stm32duino
/
Arduino_Core_STM32
Public
Notifications
You must be signed in to change notification settings
Fork
1.1k
Star
3.3k
Code
Issues
21
Pull requests
17
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
Arduino_Core_STM32
/
.github
/
workflows
/
Arduino-build.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
53 lines (51 loc) · 1.3 KB
Breadcrumbs
Arduino_Core_STM32
/
.github
/
workflows
/
Arduino-build.yml
Copy path
File metadata and controls
53 lines (51 loc) · 1.3 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name
:
STM32 Core build using arduino-cli
on
:
push
:
branches
:
-
main
paths-ignore
:
-
.github/**
-
'
!.github/workflows/Arduino-build.yml
'
-
'
*.json
'
-
'
**.md
'
-
keywords.txt
-
CI/**
-
'
!CI/build/arduino-cli.py
'
-
'
!CI/build/examples/**
'
-
cmake/**
-
tools/**
pull_request
:
paths-ignore
:
-
.github/**
-
'
!.github/workflows/Arduino-build.yml
'
-
'
*.json
'
-
'
**.md
'
-
keywords.txt
-
CI/**
-
'
!CI/build/arduino-cli.py
'
-
'
!CI/build/examples/**
'
-
cmake/**
-
tools/**
#
Allows you to run this workflow manually from the Actions tab
workflow_dispatch
:
jobs
:
core_build
:
runs-on
:
ubuntu-latest
name
:
Core compilation
steps
:
#
First of all, clone the repo using the checkout action.
-
name
:
Checkout
uses
:
actions/checkout@main
with
:
submodules
:
true
-
name
:
Compilation
id
:
Compile
uses
:
stm32duino/actions/compile-examples@v1
with
:
additional-url
:
'
https://github.com/stm32duino/BoardManagerFiles/raw/dev/package_stmicroelectronics_index.json
'
#
Use the output from the `Compile` step
-
name
:
Compilation Errors
if
:
failure()
run
:
|
cat ${{ steps.Compile.outputs.compile-result }}
exit 1
Back
|
FazBrowse Home
|
New Git URL