Skip to content

Commit 4f2ad6e

Browse files
Merge pull request #22 from ARM-software/v2
Simplified repository
2 parents 448c3b6 + 299949d commit 4f2ad6e

688 files changed

Lines changed: 335 additions & 88733 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/base_image_build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ jobs:
1313
steps:
1414
- name: Checkout repository
1515
# Check out the repository containing the Dockerfile and other necessary files
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v5
1717

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

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

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

3535
- name: Build and push Docker image
3636
# Build the Docker image using the Dockerfile in the `docker_base` directory and push it to GitHub Container Registry
37-
uses: docker/build-push-action@v4
37+
uses: docker/build-push-action@v6
3838
with:
3939
context: ./docker_base
4040
push: true

.github/workflows/build_MLEK_kws.yml

Lines changed: 0 additions & 61 deletions
This file was deleted.

.github/workflows/build_QeexoML.yml

Lines changed: 0 additions & 60 deletions
This file was deleted.

.github/workflows/build_TFLmicrospeech.yml

Lines changed: 0 additions & 56 deletions
This file was deleted.

.github/workflows/licensed_image_build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
steps:
2323
- name: Checkout repository
2424
# Check out the repository containing the Dockerfile and other necessary files
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v5
2626

2727
- name: Log in to GitHub Container Registry
2828
# Log in to GitHub Container Registry using the actor and a GitHub token
29-
uses: docker/login-action@v1
29+
uses: docker/login-action@v3
3030
with:
3131
registry: ghcr.io
3232
username: ${{ github.actor }}
@@ -49,13 +49,13 @@ jobs:
4949
echo "Secret is not set. Building with Community Edition license. Non commercial use only."
5050
else
5151
echo "Secret is set. Building with license code supplied."
52-
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
52+
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
5353
cp ./arm_mlops_docker_license ./docker_licensed/arm_mlops_docker_license
5454
fi
5555
5656
- name: Build and push Docker image
5757
# Build the Docker image using the Dockerfile in the `docker_licensed` directory and push it to GitHub Container Registry
58-
uses: docker/build-push-action@v2
58+
uses: docker/build-push-action@v6
5959
with:
6060
context: ./docker_licensed
6161
push: true

.github/workflows/licensed_image_build_community.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
steps:
2323
- name: Checkout repository
2424
# Check out the repository containing the Dockerfile and other necessary files
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v5
2626

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

5050
- name: Build and push Docker image
5151
# Build the Docker image using the Dockerfile in the `docker_licensed` directory and push it to GitHub Container Registry
52-
uses: docker/build-push-action@v2
52+
uses: docker/build-push-action@v6
5353
with:
5454
context: ./docker_licensed
5555
push: true

.github/workflows/licensed_image_test.yml

Lines changed: 0 additions & 44 deletions
This file was deleted.

.gitignore

Lines changed: 59 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,61 @@
1+
# Prerequisites
2+
*.d
13

2-
.DS_Store
4+
# Object files
35
*.o
6+
*.ko
7+
*.obj
8+
*.elf
9+
10+
# Linker output
11+
*.ilk
12+
*.map
13+
*.exp
14+
15+
# Precompiled Headers
16+
*.gch
17+
*.pch
18+
19+
# Libraries
20+
*.lib
21+
*.a
22+
*.la
23+
*.lo
24+
25+
# Shared objects (inc. Windows DLLs)
26+
*.dll
27+
*.so
28+
*.so.*
29+
*.dylib
30+
31+
# Executables
32+
*.exe
33+
*.out
34+
*.app
35+
*.i*86
36+
*.x86_64
37+
*.hex
38+
39+
# Debug files
40+
*.dSYM/
41+
*.su
42+
*.idb
43+
*.pdb
44+
45+
# Kernel Module Compile Results
46+
*.mod*
47+
*.cmd
48+
.tmp_versions/
49+
modules.order
50+
Module.symvers
51+
Mkfile.old
52+
dkms.conf
53+
54+
# debug information files
55+
*.dwo
56+
.DS_Store
57+
examples/audio/kws/.clangd
58+
template/audio/mlek_audio.cbuild-set.yml
59+
60+
# Clangd
61+
.clangd

0 commit comments

Comments
 (0)