Skip to content

Commit 9c574ea

Browse files
committed
WorkFileHelper: target/work -> build/work. Github-action gradle.yml
1 parent fbc67b6 commit 9c574ea

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/gradle.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
run: chmod +x gradlew
3838

3939
- name: Test and build with Gradle
40-
run: ./gradlew build --info --stacktrace
40+
run: ./gradlew build
4141
env:
42-
SPRING_PROFILES_ACTIVE: test
42+
SPRING_PROFILES_ACTIVE: ci
4343
# MY_CUSTOM_ENV_VAR: "value"
4444

4545
#- name: Run tests

projectforge-business/src/test/java/org/projectforge/test/WorkFileHelper.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ public class WorkFileHelper
3030

3131
private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(WorkFileHelper.class);
3232

33-
private static final String WORK_DIR = "./target/work";
33+
private static final String WORK_DIR = "./build/work";
3434

3535
/**
3636
* Get the file from the working directory. If the working directory doesn't exist then it'll be created.
37-
*
37+
*
3838
* @param filename
3939
* @return
4040
*/

0 commit comments

Comments
 (0)