Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 4 additions & 4 deletions .github/workflows/base_image_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ jobs:
steps:
- name: Checkout repository
# Check out the repository containing the Dockerfile and other necessary files
uses: actions/checkout@v2
uses: actions/checkout@v5

- name: Log in to GitHub Container Registry
# Log in to GitHub Container Registry using the actor and a GitHub token
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Docker Buildx
# Set up Docker Buildx for building multi-architecture images
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Format repo slug
# Format the repository slug to lowercase for use in the Docker image tags
Expand All @@ -34,7 +34,7 @@ jobs:

- name: Build and push Docker image
# Build the Docker image using the Dockerfile in the `docker_base` directory and push it to GitHub Container Registry
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
context: ./docker_base
push: true
Expand Down
61 changes: 0 additions & 61 deletions .github/workflows/build_MLEK_kws.yml

This file was deleted.

60 changes: 0 additions & 60 deletions .github/workflows/build_QeexoML.yml

This file was deleted.

56 changes: 0 additions & 56 deletions .github/workflows/build_TFLmicrospeech.yml

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/licensed_image_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
steps:
- name: Checkout repository
# Check out the repository containing the Dockerfile and other necessary files
uses: actions/checkout@v2
uses: actions/checkout@v5

- name: Log in to GitHub Container Registry
# Log in to GitHub Container Registry using the actor and a GitHub token
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -49,13 +49,13 @@ jobs:
echo "Secret is not set. Building with Community Edition license. Non commercial use only."
else
echo "Secret is set. Building with license code supplied."
docker exec build_container /home/arm_mlops_docker/ArmCompilerforEmbedded6.20/bin/armlm activate --code ${{ secrets.ARM_UBL_LICENSE_IDENTIFIER }} --as-user arm_mlops_docker --to-file /workspace/arm_mlops_docker_license
docker exec build_container /opt/armlm/bin/armlm activate --code ${{ secrets.ARM_UBL_LICENSE_IDENTIFIER }} --as-user arm_mlops_docker --to-file /workspace/arm_mlops_docker_license
cp ./arm_mlops_docker_license ./docker_licensed/arm_mlops_docker_license
fi

- name: Build and push Docker image
# Build the Docker image using the Dockerfile in the `docker_licensed` directory and push it to GitHub Container Registry
uses: docker/build-push-action@v2
uses: docker/build-push-action@v6
with:
context: ./docker_licensed
push: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/licensed_image_build_community.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
steps:
- name: Checkout repository
# Check out the repository containing the Dockerfile and other necessary files
uses: actions/checkout@v2
uses: actions/checkout@v5

- name: Log in to GitHub Container Registry
# Log in to GitHub Container Registry using the actor and a GitHub token
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -49,7 +49,7 @@ jobs:

- name: Build and push Docker image
# Build the Docker image using the Dockerfile in the `docker_licensed` directory and push it to GitHub Container Registry
uses: docker/build-push-action@v2
uses: docker/build-push-action@v6
with:
context: ./docker_licensed
push: true
Expand Down
44 changes: 0 additions & 44 deletions .github/workflows/licensed_image_test.yml

This file was deleted.

60 changes: 59 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,61 @@
# Prerequisites
*.d

.DS_Store
# Object files
*.o
*.ko
*.obj
*.elf

# Linker output
*.ilk
*.map
*.exp

# Precompiled Headers
*.gch
*.pch

# Libraries
*.lib
*.a
*.la
*.lo

# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib

# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex

# Debug files
*.dSYM/
*.su
*.idb
*.pdb

# Kernel Module Compile Results
*.mod*
*.cmd
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
dkms.conf

# debug information files
*.dwo
.DS_Store
examples/audio/kws/.clangd
template/audio/mlek_audio.cbuild-set.yml

# Clangd
.clangd
Loading