Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
6
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
inkscape
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1,114
Issues
1,114
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
100
Merge Requests
100
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
External Wiki
External Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Inkscape
inkscape
Commits
ba8c2188
Commit
ba8c2188
authored
Jul 01, 2017
by
Tim Sheridan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Mac CI build config
parent
82c30fbd
Pipeline
#9491707
failed with stages
in 9 minutes and 41 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
6 deletions
+35
-6
.gitlab-ci.yml
.gitlab-ci.yml
+35
-6
No files found.
.gitlab-ci.yml
View file @
ba8c2188
...
...
@@ -3,12 +3,6 @@
# the new ones here in these builds.
image
:
registry.gitlab.com/inkscape/inkscape-ci-docker/master
before_script
:
# CCache Config
-
mkdir -p ccache
-
export CCACHE_BASEDIR=${PWD}
-
export CCACHE_DIR=${PWD}/ccache
cache
:
paths
:
-
ccache/
...
...
@@ -16,6 +10,11 @@ cache:
# Building inkscape
inkscape
:
stage
:
build
before_script
:
# CCache Config
-
mkdir -p ccache
-
export CCACHE_BASEDIR=${PWD}
-
export CCACHE_DIR=${PWD}/ccache
script
:
-
mkdir -p build
-
cd build
...
...
@@ -27,6 +26,36 @@ inkscape:
paths
:
-
build/
inkscape:mac:
stage
:
build
tags
:
-
mac
before_script
:
-
brew update
-
brew upgrade
# Tools
-
brew install cmake intltool libtool pkg-config ccache
# Libraries
-
brew install bdw-gc boost gdl gettext gsl gtkmm3 libcdr libvisio libwpg pango popt poppler potrace
# Testing tools
# TODO
# Cleanup
-
brew cleanup
# CCache Config
-
mkdir -p ccache
-
export CCACHE_BASEDIR=${PWD}
-
export CCACHE_DIR=${PWD}/ccache
script
:
-
mkdir -p build
-
cd build
-
cmake .. -DIntl_INCLUDE_DIR=/usr/local/opt/gettext/include -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_BUILD_TYPE=Debug
-
make -j1
-
cd ..
artifacts
:
expire_in
:
1 year
paths
:
-
build/
# This job is a static analysis build by clang.
# It takes MORE THAN 3 HOURS, and depending on worker sometimes 4 hours.
# Make sure the timeout of the build is big enough
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment