Coveralls stopped working back in July when we reached build number 3790 because back when we used Travis we created builds from numbers 3791 to 35700. After trying to change the numbers in several ways, all of them resulting in a "No build matching CI build number" message, we're trying the Github Action provided by Coveralls instead. In order to make it work, we need to add the `simplecov-lcov` gem and generate the report at `coverage/lcov.info`. Note that, for some reason, `simplecov-lcov` doesn't seem to depend on `simplecov` and we need `simplecov` 0.18 or later, so we're manually adding this dependency as well.
50 lines
1.3 KiB
YAML
50 lines
1.3 KiB
YAML
stages:
|
|
- test
|
|
- lint
|
|
|
|
tests:
|
|
image: "ruby:2.7.6"
|
|
stage: test
|
|
services:
|
|
- postgres:10.10
|
|
cache:
|
|
key: consul
|
|
paths:
|
|
- vendor/
|
|
variables:
|
|
POSTGRES_USER: consul
|
|
RAILS_ENV: test
|
|
TEST_COVERAGE: 1
|
|
parallel: 5
|
|
script:
|
|
- apt-get update && apt-get install -y nodejs chromium
|
|
- for i in config/*.example; do cp "$i" "${i/.example}"; done
|
|
- for i in config/*.gitlab; do cp "$i" "${i/.gitlab}"; done
|
|
- bundle --without development
|
|
- bundle exec rake db:setup
|
|
- bundle exec rake assets:precompile > /dev/null 2>&1
|
|
- bin/knapsack_pro_rspec
|
|
artifacts:
|
|
when: on_failure
|
|
paths:
|
|
- tmp/screenshots/
|
|
|
|
# To make this job work, create a Personal Access Token with permissions
|
|
# to comment on your repository and add a variable named
|
|
# PRONTO_GITLAB_API_PRIVATE_TOKEN to your repository CI/CD settings
|
|
# giving it the value of the Personal Access Token
|
|
linters:
|
|
image: "ruby:2.7.6"
|
|
stage: lint
|
|
cache:
|
|
key: consul
|
|
paths:
|
|
- vendor/
|
|
only:
|
|
- merge_requests
|
|
script:
|
|
- apt-get update && apt-get install -y nodejs cmake pkg-config
|
|
- bundle --without test
|
|
- git fetch origin $CI_MERGE_REQUEST_TARGET_BRANCH_NAME
|
|
- bundle exec pronto run -f gitlab_mr -c origin/$CI_MERGE_REQUEST_TARGET_BRANCH_NAME
|