Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NPDet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIC
NPDet
Merge requests
!16
The source project of this merge request has been removed.
modified: .gitlab-ci.yml
Merged
modified: .gitlab-ci.yml
(removed):playing_with_CI
into
master
Overview
2
Commits
1
Pipelines
0
Changes
1
Merged
Whitney Armstrong
requested to merge
(removed):playing_with_CI
into
master
7 years ago
Overview
2
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
6a2a4a35
1 commit,
7 years ago
1 file
+
10
−
12
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
10
−
12
Options
before_script
:
stages
:
-
apt-get update -qq && apt-get install -y -qq sqlite3 libsqlite3-dev nodejs
-
build
-
ruby -v
-
test
-
which ruby
-
gem install bundler --no-ri --no-rdoc
-
bundle install --jobs $(nproc) "${FLAGS[@]}"
rspec
:
test
:
script
:
stage
:
test
-
bundle exec rspec
script
:
echo "Running tests"
build
:
stage
:
build
script
:
echo "Building the app"
rubocop
:
script
:
-
bundle exec rubocop
Loading