-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.gitlab-ci.yml
39 lines (34 loc) · 1.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
# This file is a template, and might need editing before it works on your project.
# Official Java image. Look for the different tagged releases at
# https://hub.docker.com/r/library/java/tags/ . A Java image is not required
# but an image with a JVM speeds up the build a bit.
# image: java:8
# test:
# script:
# # Execute your project's tests
# - sbt compile
job1:
# image:
# name: ubuntu:16.04
# entrypoint: ["/bin/bash", "-c", "-l"]
# image: java:8
image: amsharifian/docker-gitlab-runner
tags:
- llvm
- chisel
# before_script:
# # # Enable the usage of sources over https
# - apt-get update -yqq
# - apt-get install apt-transport-https -yqq
# # Add keyserver for SBT
# - echo "deb http://dl.bintray.com/sbt/debian /" | tee -a /etc/apt/sources.list.d/sbt.list
# - apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 642AC823
# # Install SBT
# - apt-get update -yqq
# - apt-get install sbt -yqq
# # Log the sbt version
# - sbt sbtVersion
script:
- sbt compile
- sbt test
- echo "RUN"