5 Commits

Author SHA1 Message Date
opencodecabilloteu 44a84ddb93 Merge pull request 'Disable ARM64 CI builds (no more ARM builders)' (#4) from chore/disable-builds into master
Reviewed-on: #4
2026-06-10 18:52:15 -04:00
cloudix_mcp_server e6db768a3d Disable ARM64 CI builds (no more ARM builders)
Comment out build jobs rather than deleting them — the ARM64 builders
are gone and there's no real use for fresh builds anymore. Keeping the
config visible in case a builder comes back later.
2026-06-10 18:51:26 -04:00
jcabillot 17d68d4af8 Merge pull request 'chore: improve renovate dependency detection' (#2) from chore/renovate into master
Reviewed-on: #2
2026-06-09 13:58:22 -04:00
Sagent 4eac82ca5e chore: remove renovate.json, gitlabci handled globally 2026-06-09 17:54:36 +00:00
Sagent 3dc8131a21 chore: improve renovate dependency detection 2026-06-09 13:00:18 +00:00
2 changed files with 19 additions and 19 deletions
+18 -18
View File
@@ -6,22 +6,22 @@ services:
before_script: before_script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
build-master: #build-master:
stage: build # stage: build
tags: # tags:
- arm64 # - arm64
script: # script:
- docker build --pull -t "$CI_REGISTRY_IMAGE" . # - docker build --pull -t "$CI_REGISTRY_IMAGE" .
- docker push "$CI_REGISTRY_IMAGE" # - docker push "$CI_REGISTRY_IMAGE"
only: # only:
- master # - master
build: #build:
stage: build # stage: build
tags: # tags:
- arm64 # - arm64
script: # script:
- docker build --pull -t "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG" . # - docker build --pull -t "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG" .
- docker push "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG" # - docker push "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG"
except: # except:
- master # - master
+1 -1
View File
@@ -1,4 +1,4 @@
FROM "alpine:latest" FROM alpine:latest
LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>" LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
RUN apk add --no-cache unrar && \ RUN apk add --no-cache unrar && \