Skip to content

Commit c99a243

Browse files
committed
ci: build HaRP from fix branch to test SPOE timeout fix
Signed-off-by: Oleksander Piskun <oleksandr2088@icloud.com>
1 parent e71b6a2 commit c99a243

4 files changed

Lines changed: 16 additions & 8 deletions

File tree

.github/workflows/tests-deploy-k8s-clusterip.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,10 @@ jobs:
125125
- name: Pre-pull ExApp image into k3s
126126
run: sudo k3s ctr images pull ghcr.io/nextcloud/app-skeleton-python:latest
127127

128-
- name: Pull HaRP image
129-
run: docker pull ghcr.io/nextcloud/nextcloud-appapi-harp:latest
128+
- name: Build HaRP from fix branch
129+
run: |
130+
git clone --depth 1 -b fix/spoe-processing-timeout https://github.com/nextcloud/HaRP.git /tmp/harp
131+
docker build -t ghcr.io/nextcloud/nextcloud-appapi-harp:latest /tmp/harp
130132
131133
- name: Start HaRP with K8s backend
132134
run: |

.github/workflows/tests-deploy-k8s-loadbalancer.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,10 @@ jobs:
130130
- name: Pre-pull ExApp image into k3s
131131
run: sudo k3s ctr images pull ghcr.io/nextcloud/app-skeleton-python:latest
132132

133-
- name: Pull HaRP image
134-
run: docker pull ghcr.io/nextcloud/nextcloud-appapi-harp:latest
133+
- name: Build HaRP from fix branch
134+
run: |
135+
git clone --depth 1 -b fix/spoe-processing-timeout https://github.com/nextcloud/HaRP.git /tmp/harp
136+
docker build -t ghcr.io/nextcloud/nextcloud-appapi-harp:latest /tmp/harp
135137
136138
- name: Start HaRP with K8s backend
137139
run: |

.github/workflows/tests-deploy-k8s-manual.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,10 @@ jobs:
125125
- name: Pre-pull ExApp image into k3s
126126
run: sudo k3s ctr images pull ghcr.io/nextcloud/app-skeleton-python:latest
127127

128-
- name: Pull HaRP image
129-
run: docker pull ghcr.io/nextcloud/nextcloud-appapi-harp:latest
128+
- name: Build HaRP from fix branch
129+
run: |
130+
git clone --depth 1 -b fix/spoe-processing-timeout https://github.com/nextcloud/HaRP.git /tmp/harp
131+
docker build -t ghcr.io/nextcloud/nextcloud-appapi-harp:latest /tmp/harp
130132
131133
- name: Start HaRP with K8s backend
132134
run: |

.github/workflows/tests-deploy-k8s.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,10 @@ jobs:
117117
- name: Pre-pull ExApp image into k3s
118118
run: sudo k3s ctr images pull ghcr.io/nextcloud/app-skeleton-python:latest
119119

120-
- name: Pull HaRP image
121-
run: docker pull ghcr.io/nextcloud/nextcloud-appapi-harp:latest
120+
- name: Build HaRP from fix branch
121+
run: |
122+
git clone --depth 1 -b fix/spoe-processing-timeout https://github.com/nextcloud/HaRP.git /tmp/harp
123+
docker build -t ghcr.io/nextcloud/nextcloud-appapi-harp:latest /tmp/harp
122124
123125
- name: Start HaRP with K8s backend
124126
run: |

0 commit comments

Comments
 (0)