Skip to content

Commit

Permalink
check code in build stage during ci
Browse files Browse the repository at this point in the history
  • Loading branch information
gciatto committed Sep 16, 2020
1 parent 34a668e commit 8ddef0c
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,11 @@ cache:
- .gradle/
- build/

Compile:
Compile & Check Style:
stage: build
script: $GCMD $BEFORE_TASK $BUILD_TASK $AFTER_TASK $GOPTS

Check Format:
stage: test
script: $GCMD $BEFORE_TASK $CHECK_CODE_TASK $AFTER_TASK $GOPTS
script:
- $GCMD $BEFORE_TASK $BUILD_TASK $AFTER_TASK $GOPTS
- $GCMD $BEFORE_TASK $CHECK_CODE_TASK $AFTER_TASK $GOPTS

Test JVM:
stage: test
Expand Down

0 comments on commit 8ddef0c

Please sign in to comment.