Initial build. #19
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: '🔥 Build TFLM' | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
branches: | |
- 'main' | |
paths: | |
- 'src/**' | |
- '.github/workflows/*.yml' | |
- '.github/workflows/*.json' | |
- '!**/README.md' | |
- '!**.rst' | |
pull_request: | |
branches: | |
- 'main' | |
paths: | |
- 'src/**' | |
- '.github/workflows/*.yml' | |
- '.github/workflows/*.json' | |
- '!**/README.md' | |
- '!**.rst' | |
jobs: | |
build-tflm: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
target: [cortex-m7+fp] | |
fail-fast: false | |
steps: | |
- name: '⏳ Checkout main' | |
uses: actions/checkout@v4 | |
with: | |
submodules: false | |
- name: '⏳ Checkout TFLM' | |
uses: actions/checkout@v4 | |
with: | |
submodules: false | |
path: tflite-micro | |
repository: tensorflow/tflite-micro | |
- name: '♻ Caching dependencies' | |
uses: actions/[email protected] | |
id: cache | |
with: | |
path: ~/cache/gcc | |
key: 'arm-gnu-toolchain-13.2.rel1' | |
- name: '🛠 Install toolchain ' | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: source tools/ci.sh && ci_install_arm_gcc | |
- name: '🛠 Install dependencies' | |
run: | | |
python -m pip install --upgrade pip numpy==1.24 Pillow==10.3 | |
- name: '🏗 Build TFLM' | |
run: source tools/ci.sh && ci_build_target ${{ matrix.target }} | |
- name: '🏗 Build headers' | |
run: source tools/ci.sh && ci_build_headers | |
- name: '⬆ Upload artifacts' | |
# if: github.event_name != 'pull_request' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.target }} | |
path: ${{ matrix.target }} | |
if-no-files-found: error | |
commit-artifacts: | |
needs: build-tflm | |
runs-on: ubuntu-20.04 | |
# if: github.event_name == 'push' | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: '⏳ Checkout repository' | |
uses: actions/checkout@v4 | |
with: | |
submodules: false | |
- name: '⬇ Download artifacts' | |
uses: actions/download-artifact@v4 | |
# - name: '🤌 Commit artifacts' | |
# run: | | |
# git config --local user.name "github-actions[bot]" | |
# git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
# git add . | |
# git commit -m "Add build artifacts" | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
base: main | |
branch: update_tflm | |
title: Update tflm libraries and headers. | |
commit-message: Update tflm libraries and headers. | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |