Skip to content
This repository was archived by the owner on Apr 17, 2024. It is now read-only.

Commit 81f2220

Browse files
author
Haodong Tang
authored
Merge pull request #65 from tanghaodong25/master
support gitlab CI/CD
2 parents 0589741 + a492b44 commit 81f2220

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

.gitlab-ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
before_script:
2+
- whoami; docker info
3+
4+
build_image:
5+
script:
6+
- docker build -f docker/ubuntu18/DockerFile --build-arg http_proxy="$http_proxy" --build-arg https_proxy="$http_proxy" --build-arg MAVEN_OPTS="$MAVEN_OPTS" .

ChangeLog

Lines changed: 0 additions & 9 deletions
This file was deleted.

docker/ubuntu18/DockerFile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,7 @@ RUN cd /; git clone https://github.com/pmem/pmdk.git
1717
RUN cd pmdk; git checkout -b 1.6 tags/1.6; make -j; make install -j;
1818
RUN cd /; git clone https://github.com/efficient/libcuckoo.git
1919
RUN cd libcuckoo; mkdir build; cd build; cmake -DCMAKE_INSTALL_PREFIX=/usr/local -DBUILD_EXAMPLES=1 -DBUILD_TESTS=1 ..; make -j; make install -j
20-
RUN cd /; git clone https://github.com/tanghaodong25/Spark-PMoF.git
21-
RUN cd Spark-PMoF; mvn install -DskipTests
20+
RUN mkdir /Spark-PMoF
21+
WORKDIR /Spark-PMoF
22+
COPY . .
23+
RUN mvn install -DskipTests

0 commit comments

Comments
 (0)