This repository has been archived by the owner on Jun 23, 2024. It is now read-only.
libtf: Update tensorflow to fix allocator bug. #48
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: 'CI' | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
branches: | |
- 'master' | |
pull_request: | |
branches: | |
- 'master' | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: '⏳ Checkout repository' | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: '🧱 Update submodules' | |
run: source ci.sh && ci_update_submodules | |
- name: '♻ Caching dependencies' | |
uses: actions/[email protected] | |
id: cache | |
with: | |
path: ~/cache/gcc | |
key: 'gcc-arm-none-eabi-10-2020-q4-major' | |
- name: '🛠 Install toolchain ' | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: source ci.sh && ci_install_arm_gcc | |
- name: '🏗 Build firmware' | |
run: source ci.sh && ci_build | |
- name: '⬆ Upload artifacts' | |
if: github.event_name != 'pull_request' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: libtf | |
path: libtf | |
if-no-files-found: error | |
stable-release: | |
needs: build | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | |
steps: | |
- name: '⏳ Checkout repository' | |
uses: actions/checkout@v3 | |
with: | |
submodules: false | |
- name: '🤌 Download artifacts' | |
uses: actions/download-artifact@v3 | |
with: | |
name: libtf | |
path: libtf | |
- name: "✏️ Generate release changelog" | |
id: changelog | |
uses: mikepenz/release-changelog-builder-action@v3 | |
with: | |
toTag: ${{ github.sha }} | |
configuration: '.github/workflows/changelog.json' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: '📦 Package firmware' | |
run: source ci.sh && ci_package_release | |
- name: '🔥 Create stable release' | |
uses: softprops/action-gh-release@v1 | |
with: | |
draft: true | |
files: libtf.zip | |
body: ${{steps.changelog.outputs.changelog}} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: '🧹 Remove artifacts' | |
uses: geekyeggo/delete-artifact@v1 | |
with: | |
name: libtf | |
failOnError: false | |
development-release: | |
needs: build | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') == false | |
permissions: | |
contents: write | |
steps: | |
- name: '⏳ Checkout repository' | |
uses: actions/checkout@v3 | |
with: | |
submodules: false | |
- name: '🤌 Download artifacts' | |
uses: actions/download-artifact@v3 | |
with: | |
name: libtf | |
path: libtf | |
- name: '📦 Package firmware' | |
run: source ci.sh && ci_package_development | |
- name: '🧹 Delete old release' | |
uses: dev-drprasad/[email protected] | |
with: | |
delete_release: true | |
tag_name: development | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: "✏️ Generate release changelog" | |
id: changelog | |
uses: mikepenz/release-changelog-builder-action@v3 | |
with: | |
toTag: ${{ github.sha }} | |
configuration: '.github/workflows/changelog.json' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: '🔥 Create development release' | |
uses: softprops/action-gh-release@v1 | |
with: | |
draft: false | |
name: Development Release | |
tag_name: development | |
body: | | |
**⚠️ This is a development release, and it may be unstable.** | |
${{steps.changelog.outputs.changelog}} | |
files: libtf.zip | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: '🧹 Remove artifacts' | |
uses: geekyeggo/delete-artifact@v1 | |
with: | |
name: libtf | |
failOnError: false |