Files
asusctl/.gitlab-ci.yml
Luke D Jones 708712e00a Next CI try
2020-08-23 14:50:22 +12:00

27 lines
411 B
YAML

image: rustdocker/rust:stable
before_script:
- apt-get update -qq && apt-get install -y -qq libdbus-1-dev libclang-dev libudev-dev
stages:
- test
- build
test:
script:
- cargo check #+nightly check --features "clippy"
build:
only:
- next
script:
- make && make vendor
artifacts:
paths:
- vendor-*.tar.xz
- cargo-config
variables:
GIT_SUBMODULE_STRATEGY: normal