-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Working Through Path Expansion Issues / Sub-Clone Working Directory (#9)
* feat: try to work around some path expansion stuff * fix: cleanup working directory * feat: larger test set / cleanup * fix: forgot to include new files * fix: eval circleci working directory before attemping to mkdir * wip: disable $HOME test for android * feat: make sure our working directory is where we expect * feat: no $HOME interpolation
- Loading branch information
Lucas Kacher
authored
Sep 11, 2020
1 parent
2e7ea9b
commit 8eaa930
Showing
6 changed files
with
67 additions
and
10 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
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
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,23 @@ | ||
version: 2.1 | ||
|
||
orbs: | ||
cli: circleci/circleci-cli@0.1.8 | ||
|
||
executors: | ||
android: | ||
docker: | ||
- image: circleci/android:api-29-ndk@sha256:d2d054238e1a7e9ab30dd9f6b44a06af8d41836e053ffc40707d75ba50bbe0bf | ||
resource_class: small | ||
|
||
# ensure we can specify a tilde based working directory that is a defined | ||
# sub-path of the clone path | ||
jobs: | ||
build: | ||
executor: android | ||
working_directory: ~/foo/bar/baz | ||
steps: | ||
- advanced-checkout/shallow-checkout: | ||
debug: true | ||
path: ~/foo/bar | ||
- run: find ~/foo/bar | grep baz | ||
|
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
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,16 @@ | ||
version: 2.1 | ||
|
||
orbs: | ||
cli: circleci/circleci-cli@0.1.8 | ||
|
||
# ensure we can specify a tilde based working directory that is a defined | ||
# sub-path of the clone path | ||
jobs: | ||
build: | ||
executor: cli/default | ||
working_directory: ~/foo/bar/src | ||
steps: | ||
- advanced-checkout/shallow-checkout: | ||
debug: true | ||
path: ~/foo/bar | ||
|
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