File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -23,25 +23,25 @@ jobs:
23
23
path : ~/.m2
24
24
key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
25
25
restore-keys : ${{ runner.os }}-m2
26
- - name : Install pre-requisites
27
- run : ./dev/before_install
26
+ - name : Install pre-requisites (Unix)
28
27
if : runner.os == 'Linux' || runner.os == 'macOS'
28
+ run : ./dev/before_install
29
29
- name : Install Universal ctags (Windows)
30
30
run : choco install universal-ctags
31
31
if : runner.os == 'Windows'
32
- - name : Before build actions
33
- run : ./dev/before
32
+ - name : Before build actions (Unix)
34
33
if : runner.os == 'Linux' || runner.os == 'macOS'
34
+ run : ./dev/before
35
35
- name : Unix build
36
+ if : runner.os == 'Linux' || runner.os == 'macOS'
36
37
env :
37
38
OPENGROK_PULL_REQUEST : ${{ github.head_ref }}
38
39
OPENGROK_REPO_SLUG : ${{ github.repository }}
39
40
OPENGROK_REF : ${{ github.ref }}
40
41
OPENGROK_COVERALLS_TOKEN : ${{ secrets.COVERALLS_TOKEN }}
41
42
OPENGROK_SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
42
43
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
43
- if : runner.os == 'Linux' || runner.os == 'macOS'
44
44
run : ./dev/main
45
45
- name : Windows build
46
- run : mvn -B -V verify
47
46
if : runner.os == 'Windows'
47
+ run : mvn -B -V verify
You can’t perform that action at this time.
0 commit comments