Skip to content

Commit 248359d

Browse files
committed
Fix
Signed-off-by: Pavol Loffay <[email protected]>
1 parent 5537129 commit 248359d

File tree

2 files changed

+3
-15
lines changed

2 files changed

+3
-15
lines changed

.github/workflows/ci-elasticsearch.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,6 @@ on:
99
jobs:
1010
elasticsearch:
1111
runs-on: ubuntu-latest
12-
services:
13-
registry:
14-
image: registry:2
15-
ports:
16-
- 5000:5000
1712
strategy:
1813
matrix:
1914
version:
@@ -48,12 +43,5 @@ jobs:
4843

4944
- uses: docker/setup-qemu-action@v1
5045

51-
- uses: docker/setup-buildx-action@v1
52-
with:
53-
driver-opts: network=host
54-
5546
- name: Run elasticsearch integration tests
5647
run: bash scripts/es-integration-test.sh ${{ matrix.version.distribution }} ${{ matrix.version.image }}
57-
env:
58-
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
59-
QUAY_TOKEN: ${{ secrets.QUAY_TOKEN }}

docker/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ ROOT_IMAGE ?= alpine:3.13
33
CERT_IMAGE := $(ROOT_IMAGE)
44
GOLANG_IMAGE := golang:1.16-alpine
55

6-
BASE_IMAGE ?= localhost:5000/baseimg_alpine:latest
7-
DEBUG_IMAGE ?= localhost:5000/debugimg_alpine:latest
8-
PLATFORMS ?= linux/amd64,linux/s390x,linux/ppc64le,linux/arm64
6+
BASE_IMAGE := localhost:5000/baseimg_alpine:latest
7+
DEBUG_IMAGE := localhost:5000/debugimg_alpine:latest
8+
PLATFORMS := linux/amd64,linux/s390x,linux/ppc64le,linux/arm64
99

1010
create-baseimg-debugimg: create-baseimg create-debugimg
1111

0 commit comments

Comments
 (0)