diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 140a8f7..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,57 +0,0 @@ -# https://hub.docker.com/_/dart -image: dart:latest - -variables: - PUB_VARS: "--platform vm --timeout 30s --concurrency=6 --test-randomize-ordering-seed=random --reporter=json" - -# Cache downloaded dependencies and plugins between builds. -# To keep cache across branches add 'key: "$CI_JOB_NAME"' -cache: - paths: - - .pub-cache/global_packages - -before_script: - - export PATH="$PATH":"~/.pub-cache/bin" - - dart pub get --no-precompile - - dart pub global activate junitreport - - dart pub global activate coverage - - dart pub global activate -sgit https://github.com/Workiva/lsif_indexer - - apt -qq update - - apt -qq install -y lcov python3 python3-distutils # unfortunately necessary to convert lcov reports to cobertura - - curl -o lcov_cobertura.py https://raw.githubusercontent.com/eriwen/lcov-to-cobertura-xml/master/lcov_cobertura/lcov_cobertura.py - -style_check: - stage: test - script: - - dart format -o none --set-exit-if-changed . - -lint: - stage: test - script: - - dart analyze . - -test: - stage: test - script: - - dart pub run test $PUB_VARS --coverage=./coverage > report.jsonl - - dart pub global run junitreport:tojunit --input report.jsonl --output report.xml - - dart pub global run coverage:format_coverage --report-on=lib --lcov -o ./coverage/lcov.info -i ./coverage - - python3 lcov_cobertura.py ./coverage/lcov.info -o ./coverage.xml - - genhtml coverage/lcov.info - coverage: '/lines\.*: \d+\.\d+\%/' - artifacts: - when: always - reports: - junit: - - report.xml - cobertura: - - coverage.xml - -code_navigation: - stage: test - allow_failure: true - script: - - dart pub global run lsif_indexer -o dump.lsif - artifacts: - reports: - lsif: dump.lsif diff --git a/.gitlab/CODEOWNERS b/.gitlab/CODEOWNERS deleted file mode 100644 index 80584da..0000000 --- a/.gitlab/CODEOWNERS +++ /dev/null @@ -1,6 +0,0 @@ -## CODEOWNERS for autoreview assigning in gitlab - -# https://docs.gitlab.com/ee/user/project/code_owners.html - -[Maintainers] -* @s_edhnm5 diff --git a/.gitlab/issue_templates/Bug Report.md b/.gitlab/issue_templates/Bug Report.md deleted file mode 100644 index 4395efd..0000000 --- a/.gitlab/issue_templates/Bug Report.md +++ /dev/null @@ -1,30 +0,0 @@ -## Summary - - - -## Steps to reproduce - - - -## What is the current bug behavior? - - - -## What is the expected correct behavior? - - - -## Relevant logs and/or screenshots - - - -## Possible fixes - - - -## Related Issues/MRs - - - -/label ~"type::bug" ~"group:hotels" diff --git a/.gitlab/issue_templates/Discussion.md b/.gitlab/issue_templates/Discussion.md deleted file mode 100644 index c2401d2..0000000 --- a/.gitlab/issue_templates/Discussion.md +++ /dev/null @@ -1,9 +0,0 @@ -## Discussion Points - - - -## Related Issues/MRs - - - -/label ~"type::discussion" ~"group:hotels" diff --git a/.gitlab/issue_templates/Documentation.md b/.gitlab/issue_templates/Documentation.md deleted file mode 100644 index 6cbbc5e..0000000 --- a/.gitlab/issue_templates/Documentation.md +++ /dev/null @@ -1,9 +0,0 @@ -## Description - - - -## Related Issues/MRs - - - -/label ~"type::documentation" ~"group:hotels" diff --git a/.gitlab/issue_templates/Misc.md b/.gitlab/issue_templates/Misc.md deleted file mode 100644 index 3f2ae44..0000000 --- a/.gitlab/issue_templates/Misc.md +++ /dev/null @@ -1,5 +0,0 @@ -## Description - - - -/label ~"type::misc" ~"group:hotels" diff --git a/.gitlab/issue_templates/New Feature.md b/.gitlab/issue_templates/New Feature.md deleted file mode 100644 index 8448bd7..0000000 --- a/.gitlab/issue_templates/New Feature.md +++ /dev/null @@ -1,13 +0,0 @@ -## Description - - - -## Implementation steps - - - -## Related Issues/MRs - - - -/label ~"type::feature" ~"group:hotels" diff --git a/.gitlab/issue_templates/Test.md b/.gitlab/issue_templates/Test.md deleted file mode 100644 index a67fa7c..0000000 --- a/.gitlab/issue_templates/Test.md +++ /dev/null @@ -1,9 +0,0 @@ -## Description - - - -## Related Issues/MRs - - - -/label ~"type::test" ~"group:hotels"