Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
a849f2e6
Unverified
Commit
a849f2e6
authored
Jan 30, 2018
by
Gus Grubba
Committed by
GitHub
Jan 30, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6069 from mavlink/pr-jenkins_mac
initial Jenkinsfile OSX build configuration
parents
8bf441af
1b77aeec
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
2 deletions
+26
-2
Jenkinsfile
Jenkinsfile
+26
-2
No files found.
Jenkinsfile
View file @
a849f2e6
...
@@ -2,9 +2,33 @@ pipeline {
...
@@ -2,9 +2,33 @@ pipeline {
agent
any
agent
any
stages
{
stages
{
stage
(
'build'
)
{
stage
(
'build'
)
{
parallel
{
stage
(
'OSX Release'
)
{
agent
{
node
{
label
'mac'
}
}
environment
{
QT_FATAL_WARNINGS
=
'1'
QMAKESPEC
=
'macx-clang'
}
steps
{
steps
{
sh
'git status'
sh
'git submodule deinit -f .'
sh
'git clean -ff -x -d .'
sh
'git submodule update --init --recursive --force'
sh
'rm -rf ${SHADOW_BUILD_DIR}; mkdir -p ${SHADOW_BUILD_DIR}'
sh
'cd ${SHADOW_BUILD_DIR}; ${QT_PATH}/5.9.3/clang_64/bin/qmake -r ${WORKSPACE}/qgroundcontrol.pro CONFIG+=release CONFIG+=WarningsAsErrorsOn'
sh
'cd ${SHADOW_BUILD_DIR}; make -j`sysctl -n hw.ncpu`'
sh
'ccache -s'
}
}
}
}
}
}
}
environment
{
SHADOW_BUILD_DIR
=
'/tmp/jenkins/shadow_build_dir'
CCACHE_CPP2
=
'1'
CCACHE_BASEDIR
=
'${WORKSPACE}'
}
}
}
}
\ No newline at end of file
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