mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
Merge pull request #1523 from openmv/workflows_update
github: Update workflow.
This commit is contained in:
commit
756ebc0201
39
.github/workflows/firmware.yml
vendored
39
.github/workflows/firmware.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: '🔥 Build Firmware 🔥'
|
name: 'Building Firmware 🔥'
|
||||||
|
|
||||||
on:
|
on:
|
||||||
create:
|
create:
|
||||||
@ -30,21 +30,21 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
target: [OPENMV2, OPENMV3, OPENMV4, OPENMV4P, PORTENTA, OPENMVPT, NICLAV, NANO33, ARDUINO_NANO_RP2040_CONNECT]
|
target: [OPENMV2, OPENMV3, OPENMV4, OPENMV4P, PORTENTA, OPENMVPT, NICLAV, NANO33, ARDUINO_NANO_RP2040_CONNECT]
|
||||||
steps:
|
steps:
|
||||||
- name: 'Checkout Repository ⏳'
|
- name: '⏳ Checkout repository'
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
submodules: false
|
submodules: false
|
||||||
|
|
||||||
- name: 'Update Submodules 🧱'
|
- name: '🧱 Update submodules'
|
||||||
run: source tools/ci.sh && ci_update_submodules
|
run: source tools/ci.sh && ci_update_submodules
|
||||||
|
|
||||||
- name: 'Install Toolchain 🛠'
|
- name: '🛠 Install toolchain '
|
||||||
run: source tools/ci.sh && ci_install_arm_gcc
|
run: source tools/ci.sh && ci_install_arm_gcc
|
||||||
|
|
||||||
- name: 'Build Firmware 🏗'
|
- name: '🏗 Build firmware'
|
||||||
run: source tools/ci.sh && ci_build_target ${{ matrix.target }}
|
run: source tools/ci.sh && ci_build_target ${{ matrix.target }}
|
||||||
|
|
||||||
- name: 'Upload Artifacts ⬆'
|
- name: '⬆ Upload artifacts'
|
||||||
if: github.event_name != 'pull_request'
|
if: github.event_name != 'pull_request'
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
@ -57,21 +57,21 @@ jobs:
|
|||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
if: github.event_name == 'create'
|
if: github.event_name == 'create'
|
||||||
steps:
|
steps:
|
||||||
- name: 'Checkout Repository ⏳'
|
- name: '⏳ Checkout repository'
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
submodules: false
|
submodules: false
|
||||||
|
|
||||||
- name: 'Download Artifacts 🤌'
|
- name: '🤌 Download artifacts'
|
||||||
uses: actions/download-artifact@v2
|
uses: actions/download-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: firmware
|
name: firmware
|
||||||
path: firmware
|
path: firmware
|
||||||
|
|
||||||
- name: 'Package Firmware 📦'
|
- name: '📦 Package firmware'
|
||||||
run: source tools/ci.sh && ci_package_firmware_release ${{github.ref_name}}
|
run: source tools/ci.sh && ci_package_firmware_release ${{github.ref_name}}
|
||||||
|
|
||||||
- name: '🔥🔥 Create Release 🔥🔥'
|
- name: '🔥 Create production release'
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
draft: true
|
draft: true
|
||||||
@ -79,7 +79,7 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: 'Remove Artifacts 🧹🪣'
|
- name: '🧹 Remove artifacts'
|
||||||
uses: geekyeggo/delete-artifact@v1
|
uses: geekyeggo/delete-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: firmware
|
name: firmware
|
||||||
@ -90,32 +90,37 @@ jobs:
|
|||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
if: github.event_name == 'push'
|
if: github.event_name == 'push'
|
||||||
steps:
|
steps:
|
||||||
- name: 'Checkout Repository ⏳'
|
- name: '⏳ Checkout repository'
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
submodules: false
|
submodules: false
|
||||||
|
|
||||||
- name: 'Download Artifacts 🤌'
|
- name: '🤌 Download artifacts'
|
||||||
uses: actions/download-artifact@v2
|
uses: actions/download-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: firmware
|
name: firmware
|
||||||
path: firmware
|
path: firmware
|
||||||
|
|
||||||
- name: 'Package Firmware 📦'
|
- name: '📦 Package firmware'
|
||||||
run: source tools/ci.sh && ci_package_firmware_development
|
run: source tools/ci.sh && ci_package_firmware_development
|
||||||
|
|
||||||
- name: '🔥🔥 Create Release 🔥🔥'
|
- name: '🏷 Update development tag'
|
||||||
|
uses: EndBug/latest-tag@latest
|
||||||
|
with:
|
||||||
|
tag-name: development
|
||||||
|
|
||||||
|
- name: '🔥 Create development release'
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
draft: false
|
draft: false
|
||||||
name: Development Release
|
name: Development Release
|
||||||
tag_name: development
|
tag_name: development
|
||||||
body: 'Warning: This a development release and it may contain bugs.'
|
body: 'WARNING: This a development release and it may be unstable.'
|
||||||
files: firmware/firmware_*.zip
|
files: firmware/firmware_*.zip
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: 'Remove Artifacts 🧹🪣'
|
- name: '🧹 Remove artifacts'
|
||||||
uses: geekyeggo/delete-artifact@v1
|
uses: geekyeggo/delete-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: firmware
|
name: firmware
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user