Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
pro
ndl
Commits
8d7c3231
Verified
Commit
8d7c3231
authored
6 years ago
by
Marcin Moskal
Browse files
Options
Download
Plain Diff
Add Gitlab CI pipeline configuration
parents
00cbad3a
4b8cb2fe
knowledge-base
1 merge request
!1
Add basic knowledge base support
Pipeline
#29
canceled with stage
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+17
-0
.gitlab-ci.yml
build.sbt
+1
-1
build.sbt
project/build.properties
+1
-1
project/build.properties
project/plugins.sbt
+1
-0
project/plugins.sbt
with
20 additions
and
2 deletions
+20
-2
.gitlab-ci.yml
0 → 100644
View file @
8d7c3231
image
:
hseeberger/scala-sbt:8u181_2.12.6_1.2.1
variables
:
SBT_OPTS
:
"
-Dsbt.global.base=sbt-cache/sbtboot
-Dsbt.boot.directory=sbt-cache/boot
-Dsbt.ivy.home=sbt-cache/ivy"
cache
:
untracked
:
true
paths
:
-
"
sbt-cache/ivy/cache"
-
"
sbt-cache/boot"
-
"
sbt-cache/sbtboot"
-
"
sbt-cache/target"
test
:
script
:
-
sbt clean coverage test coverageReport
coverage
:
'
/Coverage
was
\[\d+.\d+\%\]/'
This diff is collapsed.
Click to expand it.
build.sbt
View file @
8d7c3231
...
...
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings
(
inThisBuild
(
List
(
organization
:=
"pl.edu.agh.kis.eis"
,
scalaVersion
:=
"2.12.
5
"
,
scalaVersion
:=
"2.12.
6
"
,
version
:=
"0.1.0-SNAPSHOT"
)),
name
:=
"Neighborhood Description Language"
,
...
...
This diff is collapsed.
Click to expand it.
project/build.properties
View file @
8d7c3231
sbt.version
=
1.
1
.1
sbt.version
=
1.
2
.1
This diff is collapsed.
Click to expand it.
project/plugins.sbt
0 → 100644
View file @
8d7c3231
addSbtPlugin
(
"org.scoverage"
%
"sbt-scoverage"
%
"1.5.1"
)
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help