15 lines
162 B
YAML
15 lines
162 B
YAML
|
before_script:
|
||
|
- bundle_install
|
||
|
|
||
|
stages:
|
||
|
- build
|
||
|
- test
|
||
|
- deploy
|
||
|
|
||
|
build_linux:
|
||
|
stage: build
|
||
|
script:
|
||
|
- cargo build
|
||
|
only:
|
||
|
- master
|