-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitlab-ci.yml
170 lines (152 loc) · 4.08 KB
/
.gitlab-ci.yml
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
# You can override the included template(s) by including variable overrides
#
# SAST customization: https://docs.gitlab.com/ee/user/application_security/sast/#customizing-the-sast-settings
# Secret Detection customization: https://docs.gitlab.com/ee/user/application_security/secret_detection/#customizing-settings
#
# Dependency Scanning customization: https://docs.gitlab.com/ee/user/application_security/dependency_scanning/#customizing-the-dependency-scanning-settings
#
# Note that environment variables can be set in several places
# See https://docs.gitlab.com/ee/ci/variables/#cicd-variable-precedence
stages:
- build
- test
- dependabot
- deploy
variables:
# RAILS_ENV: ci
SECRET_KEY_BASE: not-actually-secret
POSTGRES_DB: rtci_test
POSTGRES_PASSWORD: testpass123
CACHE_FALLBACK_KEY: main
PACKAGE_MANAGER_SET: bundler,npm
SETTINGS__GITLAB_ACCESS_TOKEN: $DEPENDABOT_KEY
DIRECTORY: /
a11y_urls: "https://localhost:8080"
include:
- local: ".gitlab/caches.yml"
- local: ".gitlab/setup_langs.yml"
- local: ".gitlab/setup_project.yml"
- local: ".gitlab/run_server.yml"
- remote: "https://gitlab.com/dependabot-gitlab/dependabot-standalone/-/raw/3.24.0/.gitlab-ci.yml"
default:
image: ruby:3.3.4
cache:
- !reference [.cache-pull]
.dependabot-gitlab:
image:
entrypoint: ["sh"]
stage: dependabot
build-project:
stage: build
inherit:
default:
- image
- tags
cache:
- !reference [.cache-ruby-pull-push]
- !reference [.cache-yarn-pull-push]
- !reference [.cache-assets-pull-push]
extends: .init-project-build
rules:
- if: $CI_PIPELINE_SOURCE != "schedule"
# test-run-server:
# stage: test
# extends: .run-server
# script:
# - RESULT=$(curl http://localhost:8080)
# - echo "$RESULT" | grep -q "<title>Rtci</title>"
# rules:
# - if: $CI_PIPELINE_SOURCE != "schedule"
brakeman-scan:
stage: test
extends: .setup-langs
script:
- bundle exec brakeman -f sarif -o output.sarif.json .
artifacts:
when: always
paths:
- output.sarif.json
bundle-audit:
stage: test
extends: .setup-langs
script:
- echo "Bundle audit..."
- bundle exec rake bundler:audit
rules:
- if: $CI_PIPELINE_SOURCE != "schedule"
yarn-audit:
stage: test
extends: .setup-langs
script:
- echo "Yarn audit..."
- bundle exec rake yarn:audit
rules:
- if: $CI_PIPELINE_SOURCE != "schedule"
# ruby-bom:
# stage: test
# extends: .setup-langs
# before_script:
# - !reference [.setup-langs, before_script]
# - gem install cyclonedx-ruby
# script:
# - echo "Ruby SBOM Generation..."
# - cyclonedx-ruby -p . -o ruby_bom.xml
# artifacts:
# when: always
# paths:
# - ./ruby_bom.xml
# rules:
# - if: $CI_PIPELINE_SOURCE != "schedule"
# .owasp-scan:
# stage: test
# #TODO: check gitlab security templates for this scan
# #TODO: Owasp Dail Scan
# script:
# - echo "OWASP ZAP Scan..."
# - echo "Scan Complete"
# pa11y-scan:
# stage: test
# extends: .run-server
# script:
# - !reference [.node-deps-puppet]
# - set -o pipefail
# - yarn run pa11y-ci -c pa11yci.js 2>&1 | tee pa11y_output.txt
# artifacts:
# when: always
# expose_as: "Accessibility Reports"
# paths:
# - pa11y_output.txt
rspec:
stage: test
extends: .setup-project
script:
- echo "Rspec..."
- bundle exec rspec
- echo "Rspec Complete"
# terraform-staging:
# stage: deploy
# rules:
# - if: $CI_COMMIT_BRANCH != "main" && $CI_PIPELINE_SOURCE != "merge_request_event"
# when: never
# - when: always
# trigger:
# include: terraform/staging/.gitlab-ci.yml
# strategy: depend
# terraform-production:
# stage: deploy
# rules:
# - if: $CI_COMMIT_BRANCH != "production" && $CI_PIPELINE_SOURCE != "merge_request_event"
# when: never
# - when: always
# trigger:
# include: terraform/production/.gitlab-ci.yml
# strategy: depend
# .terraform-production:
# stage: deploy
# environment: production
# script:
# - echo "deploy production"
.sast:
stage: test
include:
- template: Security/SAST.gitlab-ci.yml