File tree Expand file tree Collapse file tree 2 files changed +4
-14
lines changed
Expand file tree Collapse file tree 2 files changed +4
-14
lines changed Original file line number Diff line number Diff line change 3535 - name : Pre-download dependencies with Maven
3636 run : mvn -U dependency:go-offline
3737
38- - name : Build and (headless) test with Maven (Linux)
39- if : ${{ runner.os == 'Linux' }}
40- run : xvfb-run mvn install
41-
42- - name : Build and (headless) test with Maven (Windows and macOS)
43- if : ${{ runner.os != 'Linux' }}
44- run : mvn install
38+ - name : Build and (headless) test with Maven
39+ run : ${{ runner.os == 'Linux' && 'xvfb-run' || '' }} mvn install
Original file line number Diff line number Diff line change 3434 - name : Pre-download dependencies with Maven
3535 run : mvn -U dependency:go-offline
3636
37- - name : Build and (headless) test with Maven (Linux)
38- if : ${{ runner.os == 'Linux' }}
39- run : xvfb-run mvn -U install
40-
41- - name : Build and (headless) test with Maven (Windows and macOS)
42- if : ${{ runner.os != 'Linux' }}
43- run : mvn -U install
37+ - name : Build and (headless) test with Maven
38+ run : ${{ runner.os == 'Linux' && 'xvfb-run' || '' }} mvn install
4439
4540 auto-merge-job :
4641 needs : build-and-test-job
You can’t perform that action at this time.
0 commit comments