Skip to content

Commit 41be144

Browse files
committed
REVERTME: use specific tag for this branch
1 parent c98f118 commit 41be144

File tree

9 files changed

+18
-14
lines changed

9 files changed

+18
-14
lines changed

.github/workflows/docker-github-ai-dev-containers-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
uses: docker/metadata-action@v5
6464
with:
6565
tags: |
66-
type=raw,value=dev-latest,enable=true
66+
type=raw,value=dev-next,enable=true
6767
images: ${{ matrix.image }}
6868

6969
# Build and push Docker image with Buildx (don't push on PR)

.github/workflows/docker-github-dev-build.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
name: DEV - build & publish Arduino dev-latest containers
1+
name: DEV - build & publish Arduino add-network-peripherals containers
22

33
on:
44
workflow_dispatch:
55

66
env:
77
REGISTRY: ghcr.io
88
DEV_REGISTRY_PATH: ghcr.io/${{ github.repository_owner }}/
9+
GH_SOURCE_REPO: https://github.com/${{ github.repository_owner }}/app-bricks-py
910

1011
permissions:
1112
contents: write
@@ -71,8 +72,11 @@ jobs:
7172
uses: docker/metadata-action@v5
7273
with:
7374
tags: |
74-
type=raw,value=dev-latest,enable=true
75+
type=raw,value=add-network-peripherals,enable=true
7576
images: ${{ matrix.image }}
77+
labels: |
78+
org.opencontainers.image.source=${{ env.GH_SOURCE_REPO}}
79+
org.opencontainers.image.url=${{ env.GH_SOURCE_REPO}}
7680
7781
# Build and push Docker image with Buildx (don't push on PR)
7882
- name: Build and push Docker image

src/arduino/app_bricks/keyword_spotting/brick_compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
ei-keyword-spot-runner:
3-
image: ${DOCKER_REGISTRY_BASE:-ghcr.io/arduino/}app-bricks/ei-models-runner:0.7.1
3+
image: ${DOCKER_REGISTRY_BASE:-ghcr.io/arduino/}app-bricks/ei-models-runner:add-network-peripherals
44
logging:
55
driver: "json-file"
66
options:

src/arduino/app_bricks/local_llm/brick_compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
genie-models-runner:
3-
image: ${DOCKER_REGISTRY_BASE:-ghcr.io/arduino/}app-bricks/genie-models-runner:dev-latest
3+
image: ${DOCKER_REGISTRY_BASE:-ghcr.io/arduino/}app-bricks/genie-models-runner:dev-next
44
# Currently, genie-models-runner requires to run as root
55
user: 0:0
66
logging:
@@ -35,7 +35,7 @@ services:
3535
sh -c "hypercorn openapi_server.main:app --bind 0.0.0.0:${GENAI_PORT:-9001}
3636
--reload --access-log - --error-log - --log-level error"
3737
llamacpp-models-runner:
38-
image: ${DOCKER_REGISTRY_BASE:-ghcr.io/arduino/}app-bricks/llamacpp-models-runner:dev-latest
38+
image: ${DOCKER_REGISTRY_BASE:-ghcr.io/arduino/}app-bricks/llamacpp-models-runner:dev-next
3939
logging:
4040
driver: "json-file"
4141
options:
@@ -66,7 +66,7 @@ services:
6666
volumes:
6767
- ${APPLAB_DOWNLOADED_LLAMA_CPP_MODELS:-${HOME}/ArduinoAppsSharedData/llamacpp/}:/models/
6868
ollama-models-runner:
69-
image: ${DOCKER_REGISTRY_BASE:-ghcr.io/arduino/}app-bricks/ollama-models-runner:dev-latest
69+
image: ${DOCKER_REGISTRY_BASE:-ghcr.io/arduino/}app-bricks/ollama-models-runner:dev-next
7070
logging:
7171
driver: "json-file"
7272
options:

src/arduino/app_bricks/local_llm/brick_compose_base.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
llamacpp-models-runner:
3-
image: ${DOCKER_REGISTRY_BASE:-ghcr.io/arduino/}app-bricks/llamacpp-models-runner:dev-latest
3+
image: ${DOCKER_REGISTRY_BASE:-ghcr.io/arduino/}app-bricks/llamacpp-models-runner:dev-next
44
logging:
55
driver: "json-file"
66
options:
@@ -30,7 +30,7 @@ services:
3030
volumes:
3131
- ${APPLAB_DOWNLOADED_LLAMA_CPP_MODELS:-${HOME}/ArduinoAppsSharedData/llamacpp/}:/models/
3232
ollama-models-runner:
33-
image: ${DOCKER_REGISTRY_BASE:-ghcr.io/arduino/}app-bricks/ollama-models-runner:dev-latest
33+
image: ${DOCKER_REGISTRY_BASE:-ghcr.io/arduino/}app-bricks/ollama-models-runner:dev-next
3434
logging:
3535
driver: "json-file"
3636
options:

src/arduino/app_bricks/video_imageclassification/brick_compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
ei-video-classification-runner:
3-
image: ${DOCKER_REGISTRY_BASE:-ghcr.io/arduino/}app-bricks/ei-models-runner:0.7.1
3+
image: ${DOCKER_REGISTRY_BASE:-ghcr.io/arduino/}app-bricks/ei-models-runner:add-network-peripherals
44
logging:
55
driver: "json-file"
66
options:

src/arduino/app_bricks/video_objectdetection/brick_compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
ei-video-obj-detection-runner:
3-
image: ${DOCKER_REGISTRY_BASE:-ghcr.io/arduino/}app-bricks/ei-models-runner:0.7.1
3+
image: ${DOCKER_REGISTRY_BASE:-ghcr.io/arduino/}app-bricks/ei-models-runner:add-network-peripherals
44
logging:
55
driver: "json-file"
66
options:

src/arduino/app_tools/builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
def run_preprocessing(dev_mode: bool = False) -> None:
1616
registry = os.getenv("PUBLIC_IMAGE_REGISTRY_BASE", None)
1717
if dev_mode:
18-
version = "dev-latest"
18+
version = "add-network-peripherals"
1919
else:
2020
version = get_version(
2121
version_scheme="only-version",

src/arduino/app_tools/module_listing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -325,8 +325,8 @@ def release():
325325
arduino_bricks_version = args.version
326326
update_ai_containers = False
327327
if args.dev is not None and args.dev:
328-
logger.warning("Development mode enabled. Using 'dev-latest' as the version.")
329-
arduino_bricks_version = "dev-latest"
328+
logger.warning("Development mode enabled. Using 'dev-next' as the version.")
329+
arduino_bricks_version = "dev-next"
330330
update_ai_containers = True
331331

332332
modules = []

0 commit comments

Comments
 (0)