From 345759d07f3d2e00536a74abebea85e6df2fef7d Mon Sep 17 00:00:00 2001 From: Yim Lee Date: Tue, 30 May 2023 13:34:56 -0700 Subject: [PATCH] CI: remove temporary gitconfig workaround --- docker/docker-compose.yaml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index e1dc84c..41ed6e1 100644 --- a/docker/docker-compose.yaml +++ b/docker/docker-compose.yaml @@ -15,13 +15,6 @@ services: build: context: . dockerfile: Dockerfile - # Note: This temporary step creates a gitconfig to use SSH for a dependency - # that is not yet public. This can be removed once it is public. - command: git config --global url."git@github.com:apple/swift-openapi-runtime".insteadOf "https://github.com/apple/swift-openapi-runtime" - volumes: - - ci-gitconfig:/ci-gitconfig - environment: - - GIT_CONFIG_GLOBAL=/ci-gitconfig/gitconfig common: &common image: *image @@ -29,10 +22,7 @@ services: volumes: - ~/.ssh:/root/.ssh - ..:/code:z - - ci-gitconfig:/ci-gitconfig working_dir: /code - environment: - - GIT_CONFIG_GLOBAL=/ci-gitconfig/gitconfig soundness: <<: *common @@ -46,5 +36,3 @@ services: <<: *common entrypoint: /bin/bash -volumes: - ci-gitconfig: