aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/maven.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 8c5f8d035..26c6f148c 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -34,4 +34,8 @@ jobs:
run: ./mvnw -B -DskipTests package --file pom.xml
- name: Run Tests
- run: ./mvnw -B -Daspectj.tests.verbose=false verify --file pom.xml
+ # Tests in module ajde call Swing/AWT classes. Without frame buffer they throw
+ # HeadlessException: No X11 DISPLAY variable was set, but this program performed an operation which requires it.
+ uses: GabrielBB/xvfb-action@v1
+ with:
+ run: ./mvnw -B -Daspectj.tests.verbose=false verify --file pom.xml