Skip to content

Commit

Permalink
try disabling buildkit in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ll5zh committed Feb 27, 2024
1 parent 581ab88 commit 134431c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ jobs:
environment:
TESTING_PROFILE: non-confidential-tests
MAVEN_GOAL: verify
DOCKER_BUILDKIT: 0
steps:
- setup_and_run_integration_tests

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class LaunchNoInternetTestIT {
*/
@BeforeAll
public static void downloadCustomDockerImage() throws IOException {
Utilities.executeCommand("DOCKER_BUILDKIT=0 docker build -f " + DOCKERFILE + " . -t " + FAKE_IMAGE_NAME, System.out, System.err);
Utilities.executeCommand("docker build -f " + DOCKERFILE + " . -t " + FAKE_IMAGE_NAME, System.out, System.err);
dockerImageDirectory = Files.createTempDirectory("docker_images").toAbsolutePath().toString();
Utilities.executeCommand("docker save -o " + dockerImageDirectory + "/fakeImage " + FAKE_IMAGE_NAME, System.out, System.err);
}
Expand Down

0 comments on commit 134431c

Please sign in to comment.