Skip to content

Commit

Permalink
Merge pull request #1 from MayurkPatil/patch-1
Browse files Browse the repository at this point in the history
CACHE_DIR changes
  • Loading branch information
prateekLambda committed May 3, 2023
2 parents 8909aad + 89d21c1 commit e9e012b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions yaml/linux/cucumber_hyperexecute_autosplit_sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ env:
# Dependency caching for Windows
cacheKey: '{{ checksum "pom.xml" }}'
cacheDirectories:
- $CACHE_DIR
- ${CACHE_DIR}

shell: bash

pre:
# Download and install packages in the CACHE_DIR.
# Skip execution of the tests in the pre step
- mvn -Dmaven.repo.local=$CACHE_DIR -Dmaven.test.skip=true clean install
- mvn -Dmaven.repo.local=${CACHE_DIR} -Dmaven.test.skip=true clean install

post:
- cat yaml/linux/cucumber_hyperexecute_autosplit_sample.yaml
Expand Down
4 changes: 2 additions & 2 deletions yaml/linux/cucumber_hyperexecute_matrix_sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
# Dependency caching for Windows
cacheKey: '{{ checksum "pom.xml" }}'
cacheDirectories:
- $CACHE_DIR
- ${CACHE_DIR}

matrix:
cucumbertag: ["@SeleniumPlayground", "@ToDo",
Expand All @@ -28,7 +28,7 @@ shell: bash
pre:
# Download and install packages in the CACHE_DIR.
# Skip execution of the tests in the pre step
- mvn -Dmaven.repo.local=$CACHE_DIR -Dmaven.test.skip=true clean install
- mvn -Dmaven.repo.local=${CACHE_DIR} -Dmaven.test.skip=true clean install

post:
- cat yaml/linux/cucumber_hyperexecute_matrix_sample.yaml
Expand Down
4 changes: 2 additions & 2 deletions yaml/mac/cucumber_hyperexecute_autosplit_sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ env:
# Dependency caching for Windows
cacheKey: '{{ checksum "pom.xml" }}'
cacheDirectories:
- $CACHE_DIR
- ${CACHE_DIR}

shell: bash

pre:
# Download and install packages in the CACHE_DIR.
# Skip execution of the tests in the pre step
- mvn -Dmaven.repo.local=$CACHE_DIR -Dmaven.test.skip=true clean install
- mvn -Dmaven.repo.local=${CACHE_DIR} -Dmaven.test.skip=true clean install

post:
- cat yaml/mac/cucumber_hyperexecute_autosplit_sample.yaml
Expand Down
4 changes: 2 additions & 2 deletions yaml/mac/cucumber_hyperexecute_matrix_sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
# Dependency caching for Windows
cacheKey: '{{ checksum "pom.xml" }}'
cacheDirectories:
- $CACHE_DIR
- ${CACHE_DIR}

matrix:
cucumbertag: ["@SeleniumPlayground", "@ToDo",
Expand All @@ -28,7 +28,7 @@ shell: bash
pre:
# Download and install packages in the CACHE_DIR.
# Skip execution of the tests in the pre step
- mvn -Dmaven.repo.local=$CACHE_DIR -Dmaven.test.skip=true clean install
- mvn -Dmaven.repo.local=${CACHE_DIR} -Dmaven.test.skip=true clean install

post:
- cat yaml/mac/cucumber_hyperexecute_matrix_sample.yaml
Expand Down
4 changes: 2 additions & 2 deletions yaml/win/cucumber_hyperexecute_autosplit_sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ env:
# Dependency caching for Windows
cacheKey: '{{ checksum "pom.xml" }}'
cacheDirectories:
- $CACHE_DIR
- ${CACHE_DIR}

pre:
# Download and install packages in the CACHE_DIR.
# Skip execution of the tests in the pre step
- mvn -Dmaven.repo.local=$CACHE_DIR -Dmaven.test.skip=true clean install
- mvn -Dmaven.repo.local=${CACHE_DIR} -Dmaven.test.skip=true clean install

post:
- cat yaml/win/cucumber_hyperexecute_autosplit_sample.yaml
Expand Down
4 changes: 2 additions & 2 deletions yaml/win/cucumber_hyperexecute_matrix_sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
# Dependency caching for Windows
cacheKey: '{{ checksum "pom.xml" }}'
cacheDirectories:
- $CACHE_DIR
- ${CACHE_DIR}

matrix:
cucumbertag: ["@SeleniumPlayground", "@ToDo",
Expand All @@ -28,7 +28,7 @@ matrix:
pre:
# Download and install packages in the CACHE_DIR.
# Skip execution of the tests in the pre step
- mvn -Dmaven.repo.local=$CACHE_DIR -Dmaven.test.skip=true clean install
- mvn -Dmaven.repo.local=${CACHE_DIR} -Dmaven.test.skip=true clean install

post:
- cat yaml/win/cucumber_hyperexecute_matrix_sample.yaml
Expand Down

0 comments on commit e9e012b

Please sign in to comment.