123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- # Workaround to enable usage of mixed SSH and Docker GitLab CI runners
- .template_lint:
- stage: lint
- extends:
- - .job_rules_default
- .template_lint_rails:
- extends:
- - .template_lint
- services:
- - !reference [.services, postgresql]
- before_script:
- - !reference [.scripts, source_rvm]
- - !reference [.scripts, bundle_install]
- - !reference [.scripts, configure_environment]
- - !reference [.scripts, zammad_db_init]
- # Must be a separate job because it uses a custom image.
- 'lint: shellcheck':
- extends:
- - .template_lint
- image: koalaman/shellcheck-alpine:stable
- cache: []
- before_script: []
- script:
- - shellcheck -S warning $(find . -name "*.sh" -o -name "functions" | egrep -v "/vendor|node_modules/")
- - shellcheck -S error script/init.d/*
- after_script: []
- 'lint: i18n & rails':
- extends:
- - .template_lint_rails
- cache: !reference [.cache, read_only_full]
- artifacts:
- expire_in: 1 week
- paths:
- - tmp/brakeman-report.html
- when: on_failure
- script:
- - !reference [.scripts, yarn_install]
- - echo "Checking .po file syntax..."
- - for FILE in i18n/*.pot i18n/*.po; do echo "Checking $FILE"; msgfmt -o /dev/null -c $FILE; done
- - echo "Checking .pot catalog consistency..."
- - bundle exec rails generate zammad:translation_catalog --check
- - echo "Brakeman security check..."
- - bundle exec brakeman -o /dev/stdout -o tmp/brakeman-report.html
- - echo "Rails zeitwerk:check autoloader check..."
- - bundle exec rails zeitwerk:check
- - .gitlab/check_graphql_api_consistency.sh
- 'lint: ruby & security':
- extends:
- - .template_lint
- before_script:
- - !reference [.scripts, source_rvm]
- - !reference [.scripts, bundle_install]
- script:
- - echo "Rubocop check..."
- - bundle exec .rubocop/validate_todos.rb
- - bundle exec rubocop --parallel
- - echo "bundler-audit security check..."
- - gem install bundler-audit
- - bundle-audit update
- - bundle-audit --ignore CVE-2015-9284
- - echo "Checking if chat assets need a rebuild..."
- - echo "Please see public/assets/chat/README.md for build instructions."
- - cp public/assets/chat/chat.js tmp/chat.js
- - yarn install --cwd public/assets/chat
- - (cd public/assets/chat && npx gulp build)
- - cmp public/assets/chat/chat.js tmp/chat.js
- 'lint: js & css':
- extends:
- - .template_lint
- cache: !reference [.cache, read_only_nodejs]
- before_script: []
- script:
- - echo "Coffeelint check..."
- - coffeelint --rules ./.coffeelint/rules/* app/
- - echo "Stylelint check..."
- - !reference [.scripts, yarn_install]
- - yarn lint:css
- - echo "ESLint check..."
- - yarn lint
- - echo "Histoire test build..."
- - yarn story:build
- # Must be a separate job because it may fail and is only executed manually.
- 'lint: orphaned ruby gems':
- extends:
- - .template_lint_rails
- allow_failure: true
- rules:
- - if: $CI_MERGE_REQUEST_ID
- when: never
- - when: manual
- script:
- - bundle exec rake zammad:ci:bundle:orphaned 5
- 'refresh global envs':
- services:
- - !reference [.services, postgresql]
- stage: lint
- # ensure that only one Job runs in the whole project (branches etc.)
- resource_group: global_refresh_envs
- # allow download via the web UI to restore ENVs in case global cache got deleted (see: `.gitlab-ci.yml`)
- artifacts:
- expire_in: 1 week
- paths:
- - fresh.env
- rules:
- - if: $CI_MERGE_REQUEST_ID
- when: never
- - if: '$CI_COMMIT_BRANCH =~ /^private/'
- when: manual
- allow_failure: true
- - when: on_success
- script:
- - bundle exec rake zammad:ci:refresh_envs
|