summaryrefslogtreecommitdiffstats
path: root/.circleci/config.yml
blob: 65d7ac7cee281baeb595fbe7c5b6e27bb13b1cd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
version: 2
jobs:
  cargo_fetch:
    docker:
      - image: puzzlewolf/rust-libical3:0.2
    working_directory: /mnt/crate
    steps:
      - checkout
      - restore_cache:
          keys:
            - cargo-v2-{{ checksum "Cargo.toml" }}-
            - cargo-v2-
      - run: cargo update
      - run: cargo fetch
      - persist_to_workspace:
          root: "."
          paths:
            - Cargo.lock
      - save_cache:
          key: cargo-v2-{{ checksum "Cargo.toml" }}-{{ checksum "Cargo.lock" }}
          paths:
            - ~/.cargo/registry
            - ~/.cargo/git
  test:
    docker:
      - image: puzzlewolf/rust-libical3:0.2
    working_directory: /mnt/crate
    steps:
      - checkout
      - attach_workspace:
          at: "."
      - restore_cache:
          keys:
            - cargo-v2-{{ checksum "Cargo.toml" }}-{{ checksum "Cargo.lock" }}
            - target-v2-{{ checksum "Cargo.toml" }}-{{ checksum "Cargo.lock" }}
      - run:
          name: Print version information
          command: rustc --version; cargo --version
      - run:
          name: Build and test
          command: cargo test --verbose --frozen
          environment:
            # Need this for the coverage run
            RUSTFLAGS: "-C link-dead-code"
      - run:
          name: Prune the output files
          command: |
            for file in target/debug/* target/debug/.??*; do
              [ -d $file -o ! -x $file ] && rm -r $file
            done
      - save_cache:
          key: target-v2-{{ checksum "Cargo.toml" }}-{{ checksum "Cargo.lock" }}
          paths:
            - ./target
      - persist_to_workspace:
          root: "."
          paths:
            - target/debug/*
  coverage:
    docker:
      - image: puzzlewolf/rust-libical3-kcov:0.2
        entrypoint: /bin/bash
    working_directory: /mnt/crate
    steps:
      - checkout
      - attach_workspace:
          at: "."
      - run: mkdir target/coverage
      - run:
          name: Rerun the tests collecting coverage
          command: |
            for file in ./target/debug/*; do
              if test -x $file; then
                kcov --verify --exclude-pattern=tests \
                    target/coverage/$(basename $file) \
                  $file --quiet
              fi
            done
            kcov --merge target/coverage-merged target/coverage/*
      - store_artifacts:
          path: target/coverage
          destination: coverage
      - store_artifacts:
          path: target/coverage-merged
          destination: coverage-merged
      - persist_to_workspace:
          root: "."
          paths:
            - target/coverage
  codecov_upload:
    docker:
      - image: buildpack-deps:curl
    working_directory: /mnt/crate
    steps:
      - checkout
      - attach_workspace:
          at: "."
      - run:
          name: Upload to Codecov
          command: bash <(curl -s https://codecov.io/bash)

workflows:
  version: 2
  test_all_and_coverage:
    jobs:
      - cargo_fetch
      - test:
          requires:
            - cargo_fetch
# TODO fix kcov SIGILL, see https://circleci.com/gh/Valodim/khaleesi/30
#      - coverage:
#         requires:
#           - test
#     - codecov_upload:
#         requires:
#           - coverage