Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable gazebo and launch PR-any on Windows #213

Merged
merged 1 commit into from
Jun 5, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion jenkins-scripts/dsl/ignition.dsl
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ ignition_software.each { ign_sw ->

// 3. install jobs to test bottles
supported_install_pkg_branches(ign_sw).each { major_version, supported_distros ->
def install_default_job = job("ignition_${ign_sw}${major_version}-install_bottle-homebrew-amd64")
def install_default_job = job("ignition_${ign_sw}${major_version}-install_bottle-homebrew-amd64")
OSRFBrewInstall.create(install_default_job)

install_default_job.with
Expand Down Expand Up @@ -611,6 +611,10 @@ ignition_software.each { ign_sw ->
enable_testing(ign_sw))
ignition_win_ci_any_job.with
{
// ign-gazebo/ign-launch still not ported completely to Windows
if (ign_sw == 'gazebo' || ign_sw == 'launch')
disabled()

steps {
batchFile("""\
call "./scripts/jenkins-scripts/ign_${ign_sw}-default-devel-windows-amd64.bat"
Expand Down