Skip to content

Commit

Permalink
ci: add image e2e tests
Browse files Browse the repository at this point in the history
Signed-off-by: peefy <[email protected]>
  • Loading branch information
Peefy committed Aug 15, 2024
1 parent 838a241 commit 5d611ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/image-e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
with:
go-version-file: go.mod
- name: Install dependencies
run: apt-get install make
run: apt-get install build-essential
- name: Example tests
run: ./examples/test.sh
- name: Run concurrent e2e tests
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ARG TARGETARCH
COPY --from=build /src/bin/kcl /usr/local/bin/kcl
RUN /usr/local/bin/kcl
RUN cp -r /root/go/bin/* /usr/local/bin/
RUN apt-get update && apt-get install gcc make git -y && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install gcc build-essential git -y && rm -rf /var/lib/apt/lists/*
# The reason for doing this below is to prevent the
# container from not having write permissions.
ENV KCL_PKG_PATH=/tmp
Expand Down

0 comments on commit 5d611ad

Please sign in to comment.