Skip to content

Commit

Permalink
Pass build tags for test executables (#552)
Browse files Browse the repository at this point in the history
  • Loading branch information
cartermckinnon authored Jan 8, 2025
1 parent fcffd59 commit 83a0c80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: go test -c ./test/...
- run: go test -c -tags=e2e ./test/...
build-image:
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN go install sigs.k8s.io/kubetest2/...@${KUBETEST2_VERSION}
WORKDIR $GOPATH/src/github.com/aws/aws-k8s-tester
COPY . .
RUN go install ./...
RUN go test -c ./test/... -o $GOPATH/bin/
RUN go test -c -tags=e2e ./test/... -o $GOPATH/bin/

FROM public.ecr.aws/amazonlinux/amazonlinux:2
ARG TARGETOS
Expand Down

0 comments on commit 83a0c80

Please sign in to comment.