Skip to content

Commit 9e6f085

Browse files
authored
Merge branch 'main' into sse-changes
2 parents f44214a + 25a04d8 commit 9e6f085

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

.github/workflows/build-push-edge-debug.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
docker:
15-
runs-on: ubuntu-latest
15+
runs-on: self-hosted
1616
steps:
1717
- name: Checkout
1818
uses: actions/checkout@v3
@@ -36,6 +36,9 @@ jobs:
3636
uses: docker/metadata-action@v5
3737
with:
3838
images: parseable/parseable
39+
40+
- name: Clean up builder cache
41+
run: docker builder prune -f
3942

4043
- name: Build and push
4144
uses: docker/build-push-action@v6

.github/workflows/build-push-edge-kafka.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
docker:
15-
runs-on: ubuntu-latest
15+
runs-on: self-hosted
1616
steps:
1717
- name: Checkout
1818
uses: actions/checkout@v4
@@ -58,3 +58,6 @@ jobs:
5858
platforms: linux/arm64
5959
build-args: |
6060
LIB_DIR=aarch64-linux-gnu
61+
62+
- name: Clean up builder cache
63+
run: docker builder prune -f

.github/workflows/build-push-edge.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
docker:
15-
runs-on: ubuntu-latest
15+
runs-on: self-hosted
1616
steps:
1717
- name: Checkout
1818
uses: actions/checkout@v3
@@ -36,6 +36,9 @@ jobs:
3636
uses: docker/metadata-action@v5
3737
with:
3838
images: parseable/parseable
39+
40+
- name: Clean up builder cache
41+
run: docker builder prune -f
3942

4043
- name: Build and push
4144
uses: docker/build-push-action@v6

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ jobs:
348348
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
349349

350350
build-push-docker-image:
351-
runs-on: ubuntu-latest
351+
runs-on: self-hosted
352352
steps:
353353
- name: Checkout
354354
uses: actions/checkout@v3
@@ -403,3 +403,6 @@ jobs:
403403
platforms: linux/arm64
404404
build-args: |
405405
LIB_DIR=aarch64-linux-gnu
406+
407+
- name: Clean up builder cache
408+
run: docker builder prune -f

0 commit comments

Comments
 (0)