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

Commit

Permalink
Merge pull request #65 from tanghaodong25/master
Browse files Browse the repository at this point in the history
support gitlab CI/CD
  • Loading branch information
Haodong Tang authored Dec 3, 2019
2 parents 0589741 + a492b44 commit 81f2220
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
6 changes: 6 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
before_script:
- whoami; docker info

build_image:
script:
- docker build -f docker/ubuntu18/DockerFile --build-arg http_proxy="$http_proxy" --build-arg https_proxy="$http_proxy" --build-arg MAVEN_OPTS="$MAVEN_OPTS" .
9 changes: 0 additions & 9 deletions ChangeLog

This file was deleted.

6 changes: 4 additions & 2 deletions docker/ubuntu18/DockerFile
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,7 @@ RUN cd /; git clone https://github.com/pmem/pmdk.git
RUN cd pmdk; git checkout -b 1.6 tags/1.6; make -j; make install -j;
RUN cd /; git clone https://github.com/efficient/libcuckoo.git
RUN cd libcuckoo; mkdir build; cd build; cmake -DCMAKE_INSTALL_PREFIX=/usr/local -DBUILD_EXAMPLES=1 -DBUILD_TESTS=1 ..; make -j; make install -j
RUN cd /; git clone https://github.com/tanghaodong25/Spark-PMoF.git
RUN cd Spark-PMoF; mvn install -DskipTests
RUN mkdir /Spark-PMoF
WORKDIR /Spark-PMoF
COPY . .
RUN mvn install -DskipTests

0 comments on commit 81f2220

Please sign in to comment.