17 lines
185 B
YAML
17 lines
185 B
YAML
before_script:
|
|
- bundle_install
|
|
|
|
stages:
|
|
- build
|
|
- test
|
|
- deploy
|
|
|
|
build_linux:
|
|
stage: build
|
|
script:
|
|
- cargo build
|
|
only:
|
|
- master
|
|
tags:
|
|
- linux
|