My GitLab Config (Docs + Tests)

I hope this gitlab-ci.yml saves someone their time, because it sure took me a long time to figure out! :slight_smile:

image: 'rust:latest'

stages:
  - test
  - doc
  - build

variables:
  CARGO_HOME: $CI_PROJECT_DIR/cargo
  APT_CACHE_DIR: $CI_PROJECT_DIR/apt

before_script:
  - apt-get update -yq
  - apt-get install -o dir::cache::archives="$APT_CACHE_DIR" -y {{ DEPENDENCIES }}

test:
  stage: test
  script:
    - rustc --version
    - cargo --version
    - cargo test --verbose

pages:
  stage: doc
  script:
    - cargo doc --no-deps
    - mv target/doc public
    - echo '<meta http-equiv="refresh" content="0; url={{ LIBRARY NAME }}">' > public/index.html
  artifacts:
    paths:
      - public
  only:
    - master

cache:
  paths:
    - apt/
    - cargo/
    - target/

Caveat: I haven't gotten cdylib / staticlib builds working yet, so distributing and building C libraries is still a pain.

10 Likes

It's great to see more people talking about GitLab CI configuration. When I first set up my projects, it took me forever to figure out.

Why are you hosting your own docs? Does https://docs.rs not work for you?

@japaric's Trust project provides templates for AppVeyor and Travis, but it'd be awesome to get some GitLab CI templates up there. I can help review if you submit a PR.

At work we have a bunch of internal projects using Rust and can't publish them to crates.io (they're part of our product). We used to use GitLab Pages to host documentation, but then switched to a private S3 bucket because GitLab Pages will serve content anyone (i.e. you can't stop outsiders from seeing our internal docs).

I can't share the config we use at work, but here's a fairly similar one I've got for one of my personal projects:

image: "registry.gitlab.com/michael-f-bryan/foo"

.rust-template: &rust-template
  variables:
    GIT_SUBMODULE_STRATEGY: recursive
    CARGO_HOME: $CI_PROJECT_DIR/cargo
  before_script:
    - rustc --version && cargo --version
  cache:
    paths:
    - target/
    - $CARGO_HOME

compile-test:
  <<: *rust-template
  stage: build
  script:
    - cargo build --verbose --all
    - cargo test --verbose --all

generate-docs:
  <<: *rust-template
  stage: build
  script:
    - cargo doc --all
    - cp -R target/doc ./crate-docs
    - echo "<meta http-equiv=refresh content=0;url=foo/index.html>" > ./crate-docs/index.html
  artifacts:
      paths:
      - crate-docs
  only:
  - master

# Upload the generated documentation to S3. Taken mostly from:
# https://about.gitlab.com/2016/08/26/ci-deployment-and-environments/
upload-docs:
  stage: deploy
  image: "cgswong/aws"
  dependencies:
    - generate-docs
  only:
  - master
  script:
    - mkdir public
    - mv crate-docs public/crate-docs
    - aws s3 sync public s3://foo.xyz.com --size-only --only-show-errors

Something to keep in mind with CI is to take that extra couple minutes to make sure you get caching set up right. It's a pain, but if you don't bother early on you'll find that over time build times for trivial changes go through the roof.

If your project has custom build dependencies (e.g. you interface with C code), you can create your own docker images and then push them to a private repo-specific registry provided by GitLab. It's super useful because it means there's no more need to install deps on every build.

I used to use GitLab for cross-compiling and releasing binaries, but most of our customers use Windows and cross-compiling to Windows can be a pain when there are non-trivial C dependencies involved.

1 Like

I'm using GitLab because my project has native dependencies, so docs.rs doesn't work. Also, @Michael-F-Bryan , builds are still really fast if I just use apt-get with the cache, and it feels a lot simpler, so I'm sticking with that for now. But custom Docker images are a good idea if I ever need a more consistent build environment. :slight_smile:

1 Like

I like to test my crates with multiple rust version.

I made a repo with that:

I identified several ways to do that:

  • install the tool chains in the script/begin_script and cache that (this was my first approach, see commit f14b86753513bfcb823d3eb20b89c2853f04e2df)
  • use an already available docker image with all the tool chain you need
  • use already available docker images, one for each tool chain
  • do one off the two, but manage the images yourself using the gitlab repository, and using gitlab-ci do build the image

The solution I implemented is the last one: I have a gitlab-ci jobs that build a docker image with all the tool chains I need. This image is updated daily using a scheduled pipelines. The other jobs use this image.

For reference, here is the resulting gitlab-ci.yml:

stages:
  - docker
  - test
  
docker:
  only:
    - schedules
  image: docker:latest
  services:
    - docker:dind
  stage: docker
  script:
    - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.gitlab.com
    - cd ci/docker/rust
    - docker build --no-cache -t registry.gitlab.com/dzamlo/gitlab-ci-rust-test/rust:latest .
    - docker push registry.gitlab.com/dzamlo/gitlab-ci-rust-test/rust:latest

.rust_test_template: &rust_test_template
  stage: test
  image: "registry.gitlab.com/dzamlo/gitlab-ci-rust-test/rust:latest"
  cache:
    paths:
      - cargo/
      - target/
  before_script:
    - export CARGO_HOME="$CI_PROJECT_DIR/cargo"
    - rustup --version
    - rustc --version
    - cargo --version
  script:
    - cargo test --all --verbose

test-stable:
  <<: *rust_test_template
  variables:
    RUSTUP_TOOLCHAIN: stable
    
test-beta:
  <<: *rust_test_template
  variables:
    RUSTUP_TOOLCHAIN: beta

test-nightly:
  <<: *rust_test_template
  variables:
    RUSTUP_TOOLCHAIN: nightly
    
test-fmt:
  <<: *rust_test_template
  variables:
    RUSTUP_TOOLCHAIN: nightly
  script:
    - cargo fmt --all --verbose -- --write-mode=diff
    
test-clippy:
  <<: *rust_test_template
  variables:
    RUSTUP_TOOLCHAIN: nightly
  script:
    - cargo clippy --all --verbose -- -D warnings


I'm trying to consolidate CI documentation after getting frustrated with posts that were out of date or didn't document why they made different choices making it hard for me to make the call on which to accept.

Contributions are welcome!

This saved me a lot of time thank you!

thanks, this has been very very helpful. However, what to put in DEPENDENCIES

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.