buildyml: Updated the workflow to use version v4 of the actions/upload-artifact and actions/download-artifact.
This commit is contained in:
parent
1fba2ec0df
commit
5f75c0ad84
20
.github/workflows/build.yml
vendored
20
.github/workflows/build.yml
vendored
@ -110,7 +110,7 @@ jobs:
|
|||||||
run: tar zcf sources.tar.gz sources
|
run: tar zcf sources.tar.gz sources
|
||||||
|
|
||||||
- name: Archive Source Bundle
|
- name: Archive Source Bundle
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: source-bundle
|
name: source-bundle
|
||||||
path: sources.tar.gz
|
path: sources.tar.gz
|
||||||
@ -127,7 +127,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Download Source Artifact
|
- name: Download Source Artifact
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: source-bundle
|
name: source-bundle
|
||||||
path: .
|
path: .
|
||||||
@ -165,10 +165,10 @@ jobs:
|
|||||||
./cibuild.sh -c -A -N -R testlist/${{matrix.boards}}.dat
|
./cibuild.sh -c -A -N -R testlist/${{matrix.boards}}.dat
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v4
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
with:
|
with:
|
||||||
name: linux-builds
|
name: linux-${{matrix.boards}}-builds
|
||||||
path: buildartifacts/
|
path: buildartifacts/
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
@ -182,7 +182,7 @@ jobs:
|
|||||||
boards: [macos, sim-01, sim-02]
|
boards: [macos, sim-01, sim-02]
|
||||||
steps:
|
steps:
|
||||||
- name: Download Source Artifact
|
- name: Download Source Artifact
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: source-bundle
|
name: source-bundle
|
||||||
path: .
|
path: .
|
||||||
@ -214,9 +214,9 @@ jobs:
|
|||||||
cd sources/nuttx/tools/ci
|
cd sources/nuttx/tools/ci
|
||||||
./cibuild.sh -i -c -A -R testlist/${{matrix.boards}}.dat
|
./cibuild.sh -i -c -A -R testlist/${{matrix.boards}}.dat
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: macos-builds
|
name: macos-${{matrix.boards}}-builds
|
||||||
path: buildartifacts/
|
path: buildartifacts/
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
@ -262,7 +262,7 @@ jobs:
|
|||||||
- run: git config --global core.autocrlf false
|
- run: git config --global core.autocrlf false
|
||||||
|
|
||||||
- name: Download Source Artifact
|
- name: Download Source Artifact
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: source-bundle
|
name: source-bundle
|
||||||
path: .
|
path: .
|
||||||
@ -282,8 +282,8 @@ jobs:
|
|||||||
cd sources/nuttx/tools/ci
|
cd sources/nuttx/tools/ci
|
||||||
./cibuild.sh -g -i -A -C -R testlist/${{matrix.boards}}.dat
|
./cibuild.sh -g -i -A -C -R testlist/${{matrix.boards}}.dat
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: msys2-builds
|
name: msys2-${{matrix.boards}}-builds
|
||||||
path: buildartifacts/
|
path: buildartifacts/
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
Loading…
x
Reference in New Issue
Block a user