Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files

Fix nightly and publish job

  • Loading branch information
joseph-cliqz authored and mahmoud-adam85 committed Aug 1, 2018
1 parent a02046a commit 224500ffd4ba1edd604fc879cf5205222465dadf
Showing with 8 additions and 8 deletions.
  1. +7 −7 Jenkinsfile.nightly
  2. +1 −1 Jenkinsfile.publish
@@ -15,13 +15,13 @@ node('mac-vm-host') {
Vagrant.configure("2") do |config|
config.vm.box = "browser-ios-v300"
config.vm.define "publishios" do |publishios|
publishios.vm.hostname ="publishios"
config.vm.define "nightlyios" do |nightlyios|
nightlyios.vm.hostname ="nightlyios"
publishios.vm.network "public_network", :bridge => "en0", auto_config: false
publishios.vm.boot_timeout = 900
publishios.vm.provider "vmware_fusion" do |v|
v.name = "publishios"
nightlyios.vm.network "public_network", :bridge => "en0", auto_config: false
nightlyios.vm.boot_timeout = 900
nightlyios.vm.provider "vmware_fusion" do |v|
v.name = "nightlyios"
v.whitelist_verified = true
v.gui = false
v.memory = ENV["NODE_MEMORY"]
@@ -31,7 +31,7 @@ node('mac-vm-host') {
v.vmx["RemoteDisplay.vnc.port"] = ENV["NODE_VNC_PORT"]
v.vmx["ethernet0.pcislotnumber"] = "33"
end
publishios.vm.provision "shell", privileged: false, run: "always", inline: <<-SHELL#!/bin/bash -l
nightlyios.vm.provision "shell", privileged: false, run: "always", inline: <<-SHELL#!/bin/bash -l
set -e
set -x
rm -f agent.jar
@@ -69,7 +69,7 @@ node('mac-vm-host') {
brew -v
brew install getsentry/tools/sentry-cli
npm -g install yarn
rm -rf Cartfile.resolved
rm -rf Cartfile.resolved Carthage node_modules Podfile.lock Pods
./bootstrap.sh --force
yarn install
pod install

0 comments on commit 224500f

Please sign in to comment.