Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
twometresteve committed Jun 28, 2023
1 parent 9737f7f commit 6175779
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 28 deletions.
24 changes: 0 additions & 24 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -550,30 +550,6 @@ steps:
concurrency_group: 'bitbar-app'
concurrency_method: eager

- label: ':bitbar: Temp test'
depends_on: "cocoa_fixture"
timeout_in_minutes: 20
agents:
queue: opensource
plugins:
artifacts#v1.9.0:
download: "features/fixtures/ios/output/iOSTestApp.ipa"
upload: "maze_output/failed/**/*"
docker-compose#v4.7.0:
pull: cocoa-maze-runner-bitbar
run: cocoa-maze-runner-bitbar
service-ports: true
command:
- "--app=/app/build/iOSTestApp.ipa"
- "--farm=bb"
- "--device=IOS_15"
- "--no-tunnel"
- "--aws-public-ip"
- "features/app_and_device_attributes.feature:6"
concurrency: 25
concurrency_group: 'bitbar-app'
concurrency_method: eager

##############################################################################
#
# Trigger more tests
Expand Down
8 changes: 4 additions & 4 deletions features/fixtures/ios/iOSTestApp/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ class ViewController: UIViewController {

// Poll for commands to run
if #available(iOS 10.0, *) {
if Scenario.baseMazeAddress.isEmpty {
Scenario.baseMazeAddress = loadMazeRunnerAddress()
}
Timer.scheduledTimer(withTimeInterval: 1, repeats: true) { timer in
Timer.scheduledTimer(withTimeInterval: 1, repeats: true) { timer in
if Scenario.baseMazeAddress.isEmpty {
Scenario.baseMazeAddress = self.loadMazeRunnerAddress()
}
Scenario.executeMazeRunnerCommand { _, scenarioName, eventMode in
log("Setting field values")
self.scenarioNameField.text = scenarioName
Expand Down

0 comments on commit 6175779

Please sign in to comment.