20 Commits

Author SHA1 Message Date
jcabillot 58d7bd1c6c Merge pull request 'chore(deps): update actions/checkout action to v7' (#10) from renovate/actions-checkout-7.x into main
Docker Build and Push / build (push) Successful in 1m35s
Release / tag (push) Failing after 11s
Reviewed-on: #10
2026-06-18 16:22:53 -04:00
renovate 539fc904db chore(deps): update actions/checkout action to v7
Test / build (pull_request) Successful in 46s
2026-06-18 15:25:26 +00:00
jcabillot 53ee51ed5b Merge pull request 'CI: standardize workflows' (#9) from fix/workflow-standard into main
Release / tag (push) Failing after 8s
Docker Build and Push / build (push) Successful in 1m37s
Reviewed-on: #9
2026-06-13 22:14:40 -04:00
cloudix_mcp_server 39a4ca84f6 ci: standardize docker-build workflow (push + schedule only)
Test / build (pull_request) Successful in 46s
2026-06-13 21:23:25 -04:00
cloudix_mcp_server a0f023071d ci: add release workflow (semver tagging) 2026-06-13 21:23:15 -04:00
cloudix_mcp_server c0508e7240 ci: add test workflow (docker build verification) 2026-06-13 21:23:12 -04:00
cloudix_mcp_server 34933d49da ci: add lint workflow with hadolint 2026-06-13 21:23:09 -04:00
jcabillot d17bf38f44 Merge pull request 'ci: migrate from Jenkins to Gitea Actions and fix image name' (#8) from fix/refactor-ci-pipelines into main
Docker Build and Push / build (push) Failing after 1m56s
Reviewed-on: #8
2026-06-12 20:21:29 -04:00
cloudix_mcp_server aff2b4d1f6 fix: update docker image from jcabillot/mcp-calday to jcabillot/mcp-ics to match repo name
Docker Build and Push / build (pull_request) Successful in 1m6s
2026-06-12 19:51:59 -04:00
cloudix_mcp_server 16c3e55cc8 chore: remove Jenkinsfile — migrated to Gitea Actions workflow 2026-06-12 19:50:19 -04:00
cloudix_mcp_server fb0472cf7b fix: update docker image from jcabillot/mcp-calday to jcabillot/mcp-ics to match repo name 2026-06-12 19:50:12 -04:00
jcabillot a01330315b Merge pull request 'ci: add automatic semver tagging on merge to main' (#7) from feat/semver-tag-action into main
Docker Build and Push / build (push) Failing after 1m27s
Reviewed-on: #7
2026-06-12 13:42:07 -04:00
cloudix_mcp_server c08f16dbc5 ci: add automatic semver tagging on merge to main
Docker Build and Push / build (pull_request) Successful in 1m0s
2026-06-12 13:19:44 -04:00
cloudix_mcp_server 94ca9b1683 Merge pull request 'chore(deps): update dependency starlette to v1' (#1) from renovate/starlette-1.x into main
Docker Build and Push / build (push) Successful in 1m33s
2026-06-10 19:27:12 -04:00
jcabillot 33916e75f7 Merge pull request 'chore(deps): pin dependencies' (#6) from renovate/pin-dependencies into main
Docker Build and Push / build (push) Failing after 10m51s
Reviewed-on: #6
2026-06-09 11:59:16 -04:00
renovate 5d885ae0e4 chore(deps): pin dependencies
Docker Build and Push / build (pull_request) Successful in 52s
2026-06-09 15:52:47 +00:00
jcabillot f332c9c32a Merge pull request 'fix: set build context to root instead of pkg' (#4) from fix/build-context into main
Docker Build and Push / build (push) Successful in 1m9s
Reviewed-on: #4
2026-05-29 16:35:40 -04:00
Julien Cabillot 86c9cb87e4 fix: set build context to root instead of pkg
Docker Build and Push / build (pull_request) Successful in 46s
The build context was set to 'pkg', but the Dockerfile references
requirements.txt and src/ which are at the repository root.
Changing context to '.' gives Docker access to all necessary files.
2026-05-29 16:33:34 -04:00
jcabillot 5bfa99ec55 feat: add Gitea Actions workflow
Docker Build and Push / build (push) Failing after 21s
feat: add Gitea Actions workflow
2026-05-29 16:22:57 -04:00
renovate 60f51924c6 chore(deps): update dependency starlette to v1
perso/mcp-ics/pipeline/pr-main This commit looks good
2026-05-28 12:07:20 +00:00
6 changed files with 80 additions and 53 deletions
+11 -14
View File
@@ -1,8 +1,6 @@
name: Docker Build and Push
on:
pull_request:
branches: [main]
push:
branches: [main]
schedule:
@@ -13,35 +11,34 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
with:
fetch-depth: 0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4
- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v4
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker metadata
id: meta
uses: docker/metadata-action@v6
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6
with:
images: jcabillot/mcp-caldav
images: jcabillot/mcp-ics
tags: |
#type=ref,event=branch
#type=ref,event=pr
#type=sha
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }}
type=sha
- name: Build and push
uses: docker/build-push-action@v7
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
with:
context: pkg
context: .
file: pkg/Dockerfile
push: ${{ github.event_name != 'pull_request' }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
pull: true
+22
View File
@@ -0,0 +1,22 @@
name: Lint
on:
pull_request:
branches: [main]
paths:
- 'pkg/Dockerfile'
- 'Dockerfile'
jobs:
hadolint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
with:
fetch-depth: 0
- name: Run hadolint
uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0
with:
dockerfile: pkg/Dockerfile
+23
View File
@@ -0,0 +1,23 @@
name: Release
on:
push:
branches: [main]
jobs:
tag:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
with:
fetch-depth: 0
- name: Bump version and push tag
uses: anothrNick/github-tag-action@4ed44965e0db8dab2b466a16da04aec3cc312fd8 # v1.75.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BUMP: patch
RELEASE_BRANCHES: main
WITH_V: true
GIT_API_TAGGING: false
+23
View File
@@ -0,0 +1,23 @@
name: Test
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4
- name: Build
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
with:
context: .
file: pkg/Dockerfile
push: false
pull: true
Vendored
-38
View File
@@ -1,38 +0,0 @@
pipeline {
environment {
registry = 'https://registry.hub.docker.com'
registryCredential = 'dockerhub_jcabillot'
dockerImage = 'jcabillot/mcp-caldav'
}
agent any
triggers {
cron('@midnight')
}
stages {
stage('Clone repository') {
steps{
checkout scm
}
}
stage('Build image') {
steps{
sh 'docker build --force-rm=true --no-cache=true --pull -t ${dockerImage} -f pkg/Dockerfile .'
}
}
stage('Deploy Image') {
steps{
script {
withCredentials([usernamePassword(credentialsId: 'dockerhub_jcabillot', usernameVariable: 'DOCKER_USER', passwordVariable: 'DOCKER_PASS')]) {
sh 'docker login --username ${DOCKER_USER} --password ${DOCKER_PASS}'
sh 'docker push ${dockerImage}'
}
}
}
}
}
}
+1 -1
View File
@@ -2,7 +2,7 @@ mcp>=1,<2
fastmcp>=3,<4
python-dotenv>=1,<2
uvicorn>=0.34,<1
starlette>=0.46,<1
starlette>=1.2,<2
icalendar>=7,<8
recurring-ical-events>=3,<4
python-dateutil>=2,<3