From 05722169f6602a3e55091fb2ef71e843dfdc10fb Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Thu, 14 Nov 2019 20:29:03 +0100 Subject: [PATCH 1/3] Exclude tests in Actions Actions act per-branch --- .github/workflows/gradle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 463880a62..e2d1fba32 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -25,4 +25,4 @@ jobs: with: java-version: 1.8 - name: Test with Gradle - run: ./gradlew clean build + run: ./gradlew clean build -x test From b253ef6ddc6c01e014620ca6c99490c9ab35f77e Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Thu, 14 Nov 2019 22:10:35 +0100 Subject: [PATCH 2/3] Remove commands.yml from debugpaste for now --- .../src/main/java/com/boydti/fawe/util/IncendoPaster.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worldedit-core/src/main/java/com/boydti/fawe/util/IncendoPaster.java b/worldedit-core/src/main/java/com/boydti/fawe/util/IncendoPaster.java index 7c9128453..217fa72ef 100644 --- a/worldedit-core/src/main/java/com/boydti/fawe/util/IncendoPaster.java +++ b/worldedit-core/src/main/java/com/boydti/fawe/util/IncendoPaster.java @@ -226,7 +226,7 @@ public final class IncendoPaster { incendoPaster.addFile(new PasteFile("config.yml", readFile(new File(Fawe.imp().getDirectory(), "config.yml")))); incendoPaster.addFile(new PasteFile("config-legacy.yml", readFile(new File(Fawe.imp().getDirectory(), "config-legacy.yml")))); incendoPaster.addFile(new PasteFile("message.yml", readFile(new File(Fawe.imp().getDirectory(), "message.yml")))); - incendoPaster.addFile(new PasteFile("commands.yml", readFile(new File(Fawe.imp().getDirectory(), "commands.yml")))); +// incendoPaster.addFile(new PasteFile("commands.yml", readFile(new File(Fawe.imp().getDirectory(), "commands.yml")))); final String rawResponse; try { From 30e38bfed4206a0e676c56fd754d919477cca91e Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Thu, 14 Nov 2019 22:11:18 +0100 Subject: [PATCH 3/3] Remove commands.yml from debugpaste Why does this class exists twice? --- .../main/java/com/sk89q/worldedit/util/paste/IncendoPaste.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/util/paste/IncendoPaste.java b/worldedit-core/src/main/java/com/sk89q/worldedit/util/paste/IncendoPaste.java index eea5d05cc..bafec79fb 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/util/paste/IncendoPaste.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/util/paste/IncendoPaste.java @@ -241,7 +241,7 @@ public final class IncendoPaste implements Paster{ incendoPaster.addFile(new PasteFile("config.yml", readFile(new File(Fawe.imp().getDirectory(), "config.yml")))); incendoPaster.addFile(new PasteFile("config-legacy.yml", readFile(new File(Fawe.imp().getDirectory(), "config-legacy.yml")))); incendoPaster.addFile(new PasteFile("message.yml", readFile(new File(Fawe.imp().getDirectory(), "message.yml")))); - incendoPaster.addFile(new PasteFile("commands.yml", readFile(new File(Fawe.imp().getDirectory(), "commands.yml")))); +// incendoPaster.addFile(new PasteFile("commands.yml", readFile(new File(Fawe.imp().getDirectory(), "commands.yml")))); final String rawResponse; try {