|
| 1 | +# Ruby CircleCI 2.0 configuration file |
| 2 | +# |
| 3 | +# Check https://circleci.com/docs/2.0/language-ruby/ for more details |
| 4 | +# |
| 5 | +version: 2 |
| 6 | +defaults: &defaults |
| 7 | + working_directory: ~/build |
| 8 | + docker: |
| 9 | + # specify the version you desire here |
| 10 | + - image: cimg/ruby:3.2.2-browsers |
| 11 | + |
| 12 | + # Specify service dependencies here if necessary |
| 13 | + # CircleCI maintains a library of pre-built images |
| 14 | + # documented at https://circleci.com/docs/2.0/circleci-images/ |
| 15 | + - image: cimg/postgres:15.3 |
| 16 | + - image: cimg/redis:6.2.6 |
| 17 | + environment: |
| 18 | + - RAILS_LOG_TO_STDOUT: false |
| 19 | + - COVERAGE: true |
| 20 | + - LOG_LEVEL: warn |
| 21 | + parallelism: 4 |
| 22 | + resource_class: large |
| 23 | + |
| 24 | +jobs: |
| 25 | + build: |
| 26 | + <<: *defaults |
| 27 | + steps: |
| 28 | + - checkout |
| 29 | + |
| 30 | + - run: |
| 31 | + name: Configure Bundler |
| 32 | + command: | |
| 33 | + echo 'export BUNDLER_VERSION=$(cat Gemfile.lock | tail -1 | tr -d " ")' >> $BASH_ENV |
| 34 | + source $BASH_ENV |
| 35 | + gem install bundler |
| 36 | +
|
| 37 | + - run: |
| 38 | + name: Which bundler? |
| 39 | + command: bundle -v |
| 40 | + |
| 41 | + - run: |
| 42 | + name: Swap node versions |
| 43 | + command: | |
| 44 | + set +e |
| 45 | + wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash |
| 46 | + export NVM_DIR="$HOME/.nvm" |
| 47 | + [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" |
| 48 | + [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" |
| 49 | + nvm install v20 |
| 50 | + echo 'export NVM_DIR="$HOME/.nvm"' >> $BASH_ENV |
| 51 | + echo '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"' >> $BASH_ENV |
| 52 | +
|
| 53 | + # Run bundler |
| 54 | + # Load installed gems from cache if possible, bundle install then save cache |
| 55 | + # Multiple caches are used to increase the chance of a cache hit |
| 56 | + |
| 57 | + - restore_cache: |
| 58 | + keys: |
| 59 | + - chatwoot-bundle-{{ .Environment.CACHE_VERSION }}-v20220524-{{ checksum "Gemfile.lock" }} |
| 60 | + |
| 61 | + - run: bundle install --frozen --path ~/.bundle |
| 62 | + - save_cache: |
| 63 | + paths: |
| 64 | + - ~/.bundle |
| 65 | + key: chatwoot-bundle-{{ .Environment.CACHE_VERSION }}-v20220524-{{ checksum "Gemfile.lock" }} |
| 66 | + |
| 67 | + # Only necessary if app uses webpacker or yarn in some other way |
| 68 | + - restore_cache: |
| 69 | + keys: |
| 70 | + - chatwoot-yarn-{{ .Environment.CACHE_VERSION }}-{{ checksum "yarn.lock" }} |
| 71 | + - chatwoot-yarn- |
| 72 | + |
| 73 | + - run: |
| 74 | + name: yarn |
| 75 | + command: yarn install --frozen-lockfile --cache-folder ~/.cache/yarn |
| 76 | + |
| 77 | + # Store yarn / webpacker cache |
| 78 | + - save_cache: |
| 79 | + key: chatwoot-yarn-{{ .Environment.CACHE_VERSION }}-{{ checksum "yarn.lock" }} |
| 80 | + paths: |
| 81 | + - ~/.cache/yarn |
| 82 | + |
| 83 | + - run: |
| 84 | + name: Download cc-test-reporter |
| 85 | + command: | |
| 86 | + mkdir -p ~/tmp |
| 87 | + curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ~/tmp/cc-test-reporter |
| 88 | + chmod +x ~/tmp/cc-test-reporter |
| 89 | + - persist_to_workspace: |
| 90 | + root: ~/tmp |
| 91 | + paths: |
| 92 | + - cc-test-reporter |
| 93 | + |
| 94 | + # verify swagger specification |
| 95 | + - run: |
| 96 | + name: Verify swagger API specification |
| 97 | + command: | |
| 98 | + bundle exec rake swagger:build |
| 99 | + if [[ `git status swagger/swagger.json --porcelain` ]] |
| 100 | + then |
| 101 | + echo "ERROR: The swagger.json file is not in sync with the yaml specification. Run 'rake swagger:build' and commit 'swagger/swagger.json'." |
| 102 | + exit 1 |
| 103 | + fi |
| 104 | + curl -L https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/6.3.0/openapi-generator-cli-6.3.0.jar > ~/tmp/openapi-generator-cli-6.3.0.jar |
| 105 | + java -jar ~/tmp/openapi-generator-cli-6.3.0.jar validate -i swagger/swagger.json |
| 106 | +
|
| 107 | + # Database setup |
| 108 | + - run: bundle exec rake db:create |
| 109 | + - run: bundle exec rake db:schema:load |
| 110 | + |
| 111 | + - run: |
| 112 | + name: Bundle audit |
| 113 | + command: bundle exec bundle audit update && bundle exec bundle audit check -v |
| 114 | + |
| 115 | + - run: |
| 116 | + name: Rubocop |
| 117 | + command: bundle exec rubocop |
| 118 | + |
| 119 | + # - run: |
| 120 | + # name: Brakeman |
| 121 | + # command: bundle exec brakeman |
| 122 | + |
| 123 | + - run: |
| 124 | + name: eslint |
| 125 | + command: yarn run eslint |
| 126 | + |
| 127 | + # Run frontend tests |
| 128 | + - run: |
| 129 | + name: Run frontend tests |
| 130 | + command: | |
| 131 | + mkdir -p ~/tmp/test-results/frontend_specs |
| 132 | + ~/tmp/cc-test-reporter before-build |
| 133 | + TESTFILES=$(circleci tests glob **/specs/*.spec.js | circleci tests split --split-by=timings) |
| 134 | + yarn test:coverage --profile 10 \ |
| 135 | + --out ~/tmp/test-results/yarn.xml \ |
| 136 | + -- ${TESTFILES} |
| 137 | + - run: |
| 138 | + name: Code Climate Test Coverage |
| 139 | + command: | |
| 140 | + ~/tmp/cc-test-reporter format-coverage -t lcov -o "coverage/codeclimate.frontend_$CIRCLE_NODE_INDEX.json" |
| 141 | +
|
| 142 | + # Run rails tests |
| 143 | + - run: |
| 144 | + name: Run backend tests |
| 145 | + command: | |
| 146 | + mkdir -p ~/tmp/test-results/rspec |
| 147 | + mkdir -p ~/tmp/test-artifacts |
| 148 | + mkdir -p coverage |
| 149 | + ~/tmp/cc-test-reporter before-build |
| 150 | + TESTFILES=$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings) |
| 151 | + bundle exec rspec --format progress \ |
| 152 | + --format RspecJunitFormatter \ |
| 153 | + --out ~/tmp/test-results/rspec.xml \ |
| 154 | + -- ${TESTFILES} |
| 155 | + no_output_timeout: 30m |
| 156 | + - run: |
| 157 | + name: Code Climate Test Coverage |
| 158 | + command: | |
| 159 | + ~/tmp/cc-test-reporter format-coverage -t simplecov -o "coverage/codeclimate.$CIRCLE_NODE_INDEX.json" |
| 160 | +
|
| 161 | + - persist_to_workspace: |
| 162 | + root: coverage |
| 163 | + paths: |
| 164 | + - codeclimate.*.json |
| 165 | + # collect reports |
| 166 | + - store_test_results: |
| 167 | + path: ~/tmp/test-results |
| 168 | + - store_artifacts: |
| 169 | + path: ~/tmp/test-artifacts |
| 170 | + - store_artifacts: |
| 171 | + path: log |
| 172 | + |
| 173 | + upload-coverage: |
| 174 | + working_directory: ~/build |
| 175 | + docker: |
| 176 | + # specify the version you desire here |
| 177 | + - image: circleci/ruby:3.0.2-node-browsers |
| 178 | + environment: |
| 179 | + - CC_TEST_REPORTER_ID: caf26a895e937974a90860cfadfded20891cfd1373a5aaafb3f67406ab9d433f |
| 180 | + steps: |
| 181 | + - attach_workspace: |
| 182 | + at: ~/build |
| 183 | + - run: |
| 184 | + name: Download cc-test-reporter |
| 185 | + command: | |
| 186 | + mkdir -p ~/tmp |
| 187 | + curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ~/tmp/cc-test-reporter |
| 188 | + chmod +x ~/tmp/cc-test-reporter |
| 189 | + - persist_to_workspace: |
| 190 | + root: ~/tmp |
| 191 | + paths: |
| 192 | + - cc-test-reporter |
| 193 | + - run: |
| 194 | + name: Upload coverage results to Code Climate |
| 195 | + command: | |
| 196 | + ~/tmp/cc-test-reporter sum-coverage --output - codeclimate.*.json | ~/tmp/cc-test-reporter upload-coverage --debug --input - |
| 197 | +
|
| 198 | +workflows: |
| 199 | + version: 2 |
| 200 | + |
| 201 | + commit: |
| 202 | + jobs: |
| 203 | + - build |
| 204 | + - upload-coverage: |
| 205 | + requires: |
| 206 | + - build |
0 commit comments