Skip to content

Commit

Permalink
Use default workingDir for tests (#1530)
Browse files Browse the repository at this point in the history
Fixes #1528
  • Loading branch information
devinrsmith authored Nov 4, 2021
1 parent 6e7fbac commit 81abc04
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,5 @@ jobs:
if: failure()
with:
name: check-ci-jvm-err
path: '*_pid*.log'
path: '**/*_pid*.log'
if-no-files-found: ignore
2 changes: 1 addition & 1 deletion .github/workflows/long-check-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ jobs:
if: failure()
with:
name: long-check-ci-jvm-err
path: '*_pid*.log'
path: '**/*_pid*.log'
if-no-files-found: ignore
8 changes: 4 additions & 4 deletions .github/workflows/nightly-check-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
if: failure()
with:
name: nightly-check-ci-jvm-err
path: '*_pid*.log'
path: '**/*_pid*.log'
if-no-files-found: ignore

- name: Publish Test Results
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
if: failure()
with:
name: nightly-testSerial-ci-jvm-err
path: '*_pid*.log'
path: '**/*_pid*.log'
if-no-files-found: ignore

- name: Publish Test Results
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
if: failure()
with:
name: nightly-testParallel-ci-jvm-err
path: '*_pid*.log'
path: '**/*_pid*.log'
if-no-files-found: ignore

- name: Publish Test Results
Expand Down Expand Up @@ -293,7 +293,7 @@ jobs:
if: failure()
with:
name: nightly-testOutOfBand-ci-jvm-err
path: '*_pid*.log'
path: '**/*_pid*.log'
if-no-files-found: ignore

- name: Publish Test Results
Expand Down
1 change: 0 additions & 1 deletion Configuration/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ sourceSets {
test {
useJUnit()

workingDir = "$rootDir"
enableAssertions = true
maxHeapSize = '3g'

Expand Down
1 change: 0 additions & 1 deletion Net/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ dependencies {
test {
useJUnit()

workingDir = "$rootDir"
enableAssertions = true
maxHeapSize = '3g'

Expand Down
1 change: 0 additions & 1 deletion Stats/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ dependencies {
test {
useJUnit()

workingDir = "$rootDir"
enableAssertions = true
maxHeapSize = '3g'

Expand Down
2 changes: 0 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,6 @@ configure modsRegular,

useJUnit()

workingDir = "$rootDir/.."

new File("$rootDir/tmp/workspace".toString()).mkdirs()
new File("$rootDir/tmp/logs".toString()).mkdirs()

Expand Down

0 comments on commit 81abc04

Please sign in to comment.