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
df609915
Unverified
Commit
df609915
authored
Mar 05, 2024
by
Lucas Saavedra Vaz
Committed by
GitHub
Mar 05, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update upload and download artifact action to v4 (#9338)
* Update to node 20 * lib and docs * Test * Fix
parent
86040af7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
11 deletions
+12
-11
.github/workflows/docs_build.yml
.github/workflows/docs_build.yml
+1
-1
.github/workflows/hil.yml
.github/workflows/hil.yml
+4
-4
.github/workflows/lib.yml
.github/workflows/lib.yml
+7
-6
No files found.
.github/workflows/docs_build.yml
View file @
df609915
...
@@ -38,7 +38,7 @@ jobs:
...
@@ -38,7 +38,7 @@ jobs:
PATH=/home/runner/.local/bin:$PATH pip3 install -r requirements.txt --prefer-binary
PATH=/home/runner/.local/bin:$PATH pip3 install -r requirements.txt --prefer-binary
PATH=/home/runner/.local/bin:$PATH SPHINXOPTS="-W" build-docs -l en
PATH=/home/runner/.local/bin:$PATH SPHINXOPTS="-W" build-docs -l en
-
name
:
Archive Docs
-
name
:
Archive Docs
uses
:
actions/upload-artifact@v
2
uses
:
actions/upload-artifact@v
4
with
:
with
:
name
:
docs
name
:
docs
path
:
docs
path
:
docs
.github/workflows/hil.yml
View file @
df609915
...
@@ -56,7 +56,7 @@ jobs:
...
@@ -56,7 +56,7 @@ jobs:
run
:
|
run
:
|
bash .github/scripts/tests_build.sh -c -t ${{matrix.chip}} -i ${{matrix.chunks}} -m ${{env.MAX_CHUNKS}}
bash .github/scripts/tests_build.sh -c -t ${{matrix.chip}} -i ${{matrix.chunks}} -m ${{env.MAX_CHUNKS}}
-
name
:
Upload ${{matrix.chip}}-${{matrix.chunks}} artifacts
-
name
:
Upload ${{matrix.chip}}-${{matrix.chunks}} artifacts
uses
:
actions/upload-artifact@v
3
uses
:
actions/upload-artifact@v
4
with
:
with
:
name
:
${{matrix.chip}}-${{matrix.chunks}}.artifacts
name
:
${{matrix.chip}}-${{matrix.chunks}}.artifacts
path
:
|
path
:
|
...
@@ -81,7 +81,7 @@ jobs:
...
@@ -81,7 +81,7 @@ jobs:
uses
:
actions/checkout@v4
uses
:
actions/checkout@v4
-
name
:
Download ${{matrix.chip}}-${{matrix.chunks}} artifacts
-
name
:
Download ${{matrix.chip}}-${{matrix.chunks}} artifacts
uses
:
actions/download-artifact@v
3
uses
:
actions/download-artifact@v
4
with
:
with
:
name
:
${{matrix.chip}}-${{matrix.chunks}}.artifacts
name
:
${{matrix.chip}}-${{matrix.chunks}}.artifacts
path
:
~/.arduino/tests/
path
:
~/.arduino/tests/
...
@@ -97,7 +97,7 @@ jobs:
...
@@ -97,7 +97,7 @@ jobs:
bash .github/scripts/tests_run.sh -c -t ${{matrix.chip}} -i ${{matrix.chunks}} -m ${{env.MAX_CHUNKS}} -e
bash .github/scripts/tests_run.sh -c -t ${{matrix.chip}} -i ${{matrix.chunks}} -m ${{env.MAX_CHUNKS}} -e
-
name
:
Upload test result artifacts
-
name
:
Upload test result artifacts
uses
:
actions/upload-artifact@v
3
uses
:
actions/upload-artifact@v
4
if
:
always()
if
:
always()
with
:
with
:
name
:
test_results-${{matrix.chip}}-${{matrix.chunks}}
name
:
test_results-${{matrix.chip}}-${{matrix.chunks}}
...
@@ -112,7 +112,7 @@ jobs:
...
@@ -112,7 +112,7 @@ jobs:
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
steps
:
steps
:
-
name
:
Upload
-
name
:
Upload
uses
:
actions/upload-artifact@v
3
uses
:
actions/upload-artifact@v
4
with
:
with
:
name
:
Event File
name
:
Event File
path
:
${{github.event_path}}
path
:
${{github.event_path}}
.github/workflows/lib.yml
View file @
df609915
...
@@ -75,9 +75,9 @@ jobs:
...
@@ -75,9 +75,9 @@ jobs:
- --warnings="all"
- --warnings="all"
-
name
:
Upload artifact
-
name
:
Upload artifact
uses
:
actions/upload-artifact@v
3
uses
:
actions/upload-artifact@v
4
with
:
with
:
name
:
${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}
name
:
${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}
-${{ matrix.target }}
path
:
${{ env.SKETCHES_REPORTS_PATH }}
path
:
${{ env.SKETCHES_REPORTS_PATH }}
report-to-file
:
report-to-file
:
...
@@ -98,9 +98,10 @@ jobs:
...
@@ -98,9 +98,10 @@ jobs:
# This step is needed to get the size data produced by the compile jobs
# This step is needed to get the size data produced by the compile jobs
-
name
:
Download sketches reports artifact
-
name
:
Download sketches reports artifact
uses
:
actions/download-artifact@v
3
uses
:
actions/download-artifact@v
4
with
:
with
:
name
:
${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}
pattern
:
${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}-*
merge-multiple
:
true
path
:
${{ env.SKETCHES_REPORTS_PATH }}
path
:
${{ env.SKETCHES_REPORTS_PATH }}
-
name
:
Report results
-
name
:
Report results
...
@@ -129,7 +130,7 @@ jobs:
...
@@ -129,7 +130,7 @@ jobs:
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
steps
:
steps
:
-
name
:
Upload
-
name
:
Upload
uses
:
actions/upload-artifact@v
2
uses
:
actions/upload-artifact@v
4
with
:
with
:
name
:
Event File
name
:
Event File
path
:
${{github.event_path}}
path
:
${{github.event_path}}
\ No newline at end of file
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