-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Run integration tests on dedicated host (#358)
Integration tests currently take 80+ minutes in GitHub Actions. This change configures the integration test to be run on dedicated Linkerd build infra, reducing the test time to ~30 minutes.
- Loading branch information
Showing
2 changed files
with
61 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Intended to be run on a remote DOCKER_HOST | ||
ARG RUST_IMAGE=rust:1.37.0-buster | ||
FROM $RUST_IMAGE as build | ||
WORKDIR /usr/src/linkerd2-proxy | ||
COPY . ./ | ||
RUN ["make", "fetch"] | ||
ENTRYPOINT ["make"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters