2022-08-13 15:12:31 +05:30
|
|
|
# You can copy and paste this template into a new `.gitlab-ci.yml` file.
|
|
|
|
# You should not add this template to an existing `.gitlab-ci.yml` file by using the `include:` keyword.
|
|
|
|
#
|
2021-09-30 23:02:18 +05:30
|
|
|
# To contribute improvements to CI/CD templates, please follow the Development guide at:
|
|
|
|
# https://docs.gitlab.com/ee/development/cicd/templates.html
|
|
|
|
# This specific template is located at:
|
|
|
|
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Scala.gitlab-ci.yml
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
# Official OpenJDK Java image. Look for the different tagged releases at
|
|
|
|
# https://hub.docker.com/_/openjdk/ . A Java image is not required
|
2016-08-24 12:49:21 +05:30
|
|
|
# but an image with a JVM speeds up the build a bit.
|
2020-05-24 23:13:21 +05:30
|
|
|
image: openjdk:8
|
2016-08-24 12:49:21 +05:30
|
|
|
|
|
|
|
before_script:
|
|
|
|
# Enable the usage of sources over https
|
|
|
|
- apt-get update -yqq
|
|
|
|
- apt-get install apt-transport-https -yqq
|
|
|
|
# Add keyserver for SBT
|
2022-01-26 12:08:38 +05:30
|
|
|
- echo "deb https://repo.scala-sbt.org/scalasbt/debian /" | tee -a /etc/apt/sources.list.d/sbt.list
|
|
|
|
- mkdir -p /root/.gnupg
|
|
|
|
- gpg --recv-keys --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/scalasbt-release.gpg --keyserver hkp://keyserver.ubuntu.com:80 2EE0EA64E40A89B84B2DF73499E82A75642AC823
|
|
|
|
- chmod 644 /etc/apt/trusted.gpg.d/scalasbt-release.gpg
|
2016-08-24 12:49:21 +05:30
|
|
|
# Install SBT
|
|
|
|
- apt-get update -yqq
|
|
|
|
- apt-get install sbt -yqq
|
|
|
|
# Log the sbt version
|
2020-05-24 23:13:21 +05:30
|
|
|
- sbt sbtVersion
|
2016-08-24 12:49:21 +05:30
|
|
|
|
|
|
|
test:
|
|
|
|
script:
|
|
|
|
# Execute your project's tests
|
|
|
|
- sbt clean test
|
2022-11-25 23:54:43 +05:30
|
|
|
|
|
|
|
deploy:
|
|
|
|
stage: deploy
|
|
|
|
script: echo "Define your deployment script!"
|
|
|
|
environment: production
|