Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
f61446b6
Commit
f61446b6
authored
8 years ago
by
Jonathan Lambrechts
Browse files
Options
Downloads
Patches
Plain Diff
initial gitlab-ci
parent
9f85881a
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+8
-0
8 additions, 0 deletions
.gitlab-ci.yml
doc/docker-test/Dockerfile
+12
-0
12 additions, 0 deletions
doc/docker-test/Dockerfile
doc/docker-test/README
+7
-0
7 additions, 0 deletions
doc/docker-test/README
with
27 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
8
−
0
View file @
f61446b6
makegmsh
:
image
:
immc/gmsh:v0.4
script
:
-
mkdir build
-
cd build
-
cmake .. -DENABLE_CXX11=1
-
make -j4
-
ctest --output-on-failure
This diff is collapsed.
Click to expand it.
doc/docker-test/Dockerfile
0 → 100644
+
12
−
0
View file @
f61446b6
FROM
ubuntu:16.04
RUN
apt-get update
&&
apt-get
install
-y
cmake curl g++ gfortran libfltk1.3-dev libfreetype6-dev libgl1-mesa-dev liblapack-dev libxi-dev libxmu-dev mesa-common-dev tcl-dev tk-dev
RUN
curl
-L
-o
occ71.tgz
"http://git.dev.opencascade.org/gitweb/?p=occt.git;a=snapshot;h=refs/tags/V7_1_0;sf=tgz"
RUN
tar
xf occ71.tgz
RUN
cd
occt-V7_1_0
&&
mkdir
build
&&
cd
build
&&
cmake
-DCMAKE_BUILD_TYPE
=
Release
-DBUILD_MODULE_Draw
=
0
-DBUILD_MODULE_Visualization
=
0
-DBUILD_MODULE_ApplicationFramework
=
0 ..
&&
cat
CMakeCache.txt
&&
make
-j8
RUN
cd
occt-V7_1_0/build
&&
make
install
VOLUME
["/etc/gitlab-runner"]
RUN
useradd
-ms
/bin/bash validator
USER
validator
WORKDIR
/home/validator
This diff is collapsed.
Click to expand it.
doc/docker-test/README
0 → 100644
+
7
−
0
View file @
f61446b6
# build image
docker build -t immc/gmsh:v0.4 .
# push image to docker-hub
docker login
docker push immc/dg-valid
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment