-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: remove temporary gitconfig workaround (#47)
### Motivation The repo is public now. There is no need for the workaround anymore. ### Modifications Remove gitconfig workaround added in #3
- Loading branch information
Showing
1 changed file
with
0 additions
and
12 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 |
---|---|---|
|
@@ -15,24 +15,14 @@ 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."[email protected]: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 | ||
depends_on: [runtime-setup] | ||
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: |