Skip to content
This repository was archived by the owner on Dec 16, 2022. It is now read-only.

Commit 4f34c73

Browse files
committed
Delete dockerignore as it breaks in CI
Signed-off-by: Stefan Prodan <[email protected]>
1 parent ac8bee1 commit 4f34c73

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.dockerignore

-2
This file was deleted.

.github/workflows/build.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ jobs:
2323
- 5000:5000
2424
steps:
2525
- name: Checkout
26-
id: checkout
2726
uses: actions/checkout@v2
27+
- name: Unshallow
28+
run: git fetch --prune --unshallow
2829
- name: Set up QEMU
2930
id: qemu
3031
uses: docker/setup-qemu-action@v1
@@ -54,6 +55,7 @@ jobs:
5455
key: ${{ runner.os }}-buildx-ghcache-${{ github.sha }}
5556
restore-keys: |
5657
${{ runner.os }}-buildx-ghcache-
58+
- run: cat ./hack/Makefile
5759
- name: Build candidate image
5860
id: build_candidate
5961
uses: docker/build-push-action@v2

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
FROM scratch
22

3-
COPY hack/Makefile Makefile
3+
COPY ./hack/Makefile Makefile

Dockerfile.test

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ FROM gostable AS go-linux
1212
FROM go-${TARGETOS} AS build-base-bullseye
1313

1414
COPY --from=xx / /
15-
COPY hack/Makefile /libgit2/Makefile
15+
COPY ./hack/Makefile /libgit2/Makefile
1616

1717
RUN make -C /libgit2/ cmake
1818

0 commit comments

Comments
 (0)