We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ca7978 commit 287a5f3Copy full SHA for 287a5f3
.github/workflows/release.yml
@@ -20,7 +20,7 @@ jobs:
20
21
- name: start xvfb
22
run:
23
- Xvfb :99 &
+ Xvfb :0 &
24
25
- name: initialize the X11 DISPLAY variable
26
@@ -49,8 +49,11 @@ jobs:
49
echo $'app.name=BowlerScriptKernel' > src/main/resources/com/neuronrobotics/bowlerkernel/build.properties
50
echo "app.version=${{ steps.get_version.outputs.VERSION }}" >> src/main/resources/com/neuronrobotics/bowlerkernel/build.properties
51
52
- - name: test with Gradle
53
- run: ./gradlew test
+ - name: initialize the X11 DISPLAY variable
+ run:
54
+ export DISPLAY=:0
55
+ - name: Build/Test with Gradle
56
+ run: xvfb-run -s '-screen 0 1024x768x24' ./gradlew test
57
58
- name: Build with Gradle
59
run: ./gradlew shadowJar
0 commit comments