-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3d397e9
commit 9c33b39
Showing
1 changed file
with
8 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ on: | |
|
||
jobs: | ||
build-tflm: | ||
runs-on: ubuntu-24.04 | ||
runs-on: ubuntu-22.04 | ||
|
||
strategy: | ||
matrix: | ||
|
@@ -51,6 +51,12 @@ jobs: | |
repository: tensorflow/tflite-micro | ||
ref: 213eb8769b919f722f85877a2affeddd76f45dca | ||
|
||
- name: Update package lists | ||
run: sudo apt-get update | ||
|
||
- name: Upgrade build-essential | ||
run: sudo apt-get install --only-upgrade build-essential -y | ||
|
||
- name: '♻ Caching dependencies' | ||
uses: actions/[email protected] | ||
id: cache | ||
|
@@ -111,7 +117,7 @@ jobs: | |
if-no-files-found: error | ||
|
||
push-artifacts: | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-22.04 | ||
needs: [build-tflm] | ||
if: github.event_name == 'push' | ||
permissions: | ||
|