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
b440dea8
Unverified
Commit
b440dea8
authored
Jan 30, 2018
by
Daniel Agar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
initial Jenkinsfile OSX build configuration
parent
8bf441af
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
2 deletions
+23
-2
Jenkinsfile
Jenkinsfile
+23
-2
No files found.
Jenkinsfile
View file @
b440dea8
...
@@ -2,9 +2,30 @@ pipeline {
...
@@ -2,9 +2,30 @@ pipeline {
agent
any
agent
any
stages
{
stages
{
stage
(
'build'
)
{
stage
(
'build'
)
{
steps
{
parallel
{
sh
'git status'
stage
(
'OSX Release'
)
{
agent
{
node
{
label
'mac'
}
}
environment
{
QT_FATAL_WARNINGS
=
'1'
QMAKESPEC
=
'macx-clang'
}
steps
{
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/5.9.3/clang_64/bin/qmake -r ${WORKSPACE}/qgroundcontrol.pro CONFIG+=release CONFIG+=WarningsAsErrorsOn'
sh
'cd ${SHADOW_BUILD_DIR}; make -j24'
}
}
}
}
}
}
}
}
environment
{
SHADOW_BUILD_DIR
=
'/tmp/jenkins/shadow_build_dir'
}
}
}
\ 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