Skip to content

Commit

Permalink
Add tools and workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
iabdalkader committed Jun 22, 2024
1 parent e55fb02 commit 6c94890
Show file tree
Hide file tree
Showing 4 changed files with 269 additions and 201 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: '📜 Check Commit Messages'

on:
pull_request:
types:
- opened
- edited
- reopened
- synchronize
branches:
- 'master'

jobs:
check-commit-messages:
runs-on: ubuntu-latest
steps:
- name: '📜 Check commit messages format'
uses: gsactions/commit-message-checker@v2
with:
pattern: '^[A-Za-z]+.+ .+\.$'
flags: 'gm'
error: 'Commit subject line must match the following pattern: <description".">'
excludeTitle: 'false'
excludeDescription: 'true'
checkAllCommitMessages: 'true'
accessToken: ${{ secrets.GITHUB_TOKEN }}
- name: '📜 Check commit messages length'
uses: gsactions/commit-message-checker@v2
with:
pattern: '^[^#].{10,78}$'
error: 'Commit subject line maximum line length of 78 characters is exceeded.'
excludeTitle: 'false'
excludeDescription: 'true'
checkAllCommitMessages: 'true'
accessToken: ${{ secrets.GITHUB_TOKEN }}
154 changes: 154 additions & 0 deletions .github/workflows/tflm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,154 @@
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-m0plus, cortex-m4+fp, cortex-m7+fp, cortex-m55]
build: [release, debug]
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
ref: 8c458fc48ee972ea4fc56ddc08849823b9af7ea8

- name: '♻ Caching dependencies'
uses: actions/cache@v4.0.2
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 }} ${{ matrix.build }}

- name: '⬆ Upload libraries'
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.target }}
path: ${{ matrix.target }}
if-no-files-found: error

build-tflm-headers:
runs-on: ubuntu-20.04

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
ref: 8c458fc48ee972ea4fc56ddc08849823b9af7ea8

- name: '♻ Caching dependencies'
uses: actions/cache@v4.0.2
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 headers'
run: source tools/ci.sh && ci_build_headers include

- name: '⬆ Upload headers'
uses: actions/upload-artifact@v4
with:
name: include
path: include
if-no-files-found: error

push-artifacts:
runs-on: ubuntu-20.04
needs: [build-tflm, build-tflm-headers]
# if: github.event_name == 'push'
permissions:
contents: write
pull-requests: write

steps:
- name: '⏳ Checkout repository'
uses: actions/checkout@v4
with:
submodules: false

- name: '🧹 Remove old headers '
run: |
rm -fr include
- name: '⬇ Download artifacts'
uses: actions/download-artifact@v4

- 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 }}

- name: '🧹 Remove artifacts'
uses: geekyeggo/delete-artifact@v5
with:
name: |
cortex*
include
failOnError: false
201 changes: 0 additions & 201 deletions LICENSE

This file was deleted.

Loading

0 comments on commit 6c94890

Please sign in to comment.