Skip to content

Commit 3b4efd1

Browse files
authored
remove 2020 tests (#201)
1 parent bec99d5 commit 3b4efd1

File tree

3 files changed

+11
-120
lines changed

3 files changed

+11
-120
lines changed

.buildkite/pipeline.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ steps:
1212
UNITY_PERFORMANCE_VERSION: *2021
1313
commands:
1414
- rake code:verify
15+
retry:
16+
automatic:
17+
- exit_status: "*"
18+
limit: 3
1519

1620
- label: Run Unit Tests
1721
timeout_in_minutes: 5

.buildkite/unity.2020.full.yml

Lines changed: 0 additions & 118 deletions
Original file line numberDiff line numberDiff line change
@@ -119,121 +119,3 @@ steps:
119119
automatic:
120120
- exit_status: '*'
121121
limit: 1
122-
123-
124-
125-
126-
127-
- group: ":test_tube: E2E Tests Unity 2020"
128-
steps:
129-
- label: Run MacOS e2e tests for Unity 2020
130-
agents:
131-
queue: macos-15-isolated
132-
timeout_in_minutes: 30
133-
depends_on: build-macos-fixture-2020
134-
env:
135-
UNITY_PERFORMANCE_VERSION: *2020
136-
plugins:
137-
'artifacts#v1.9.0':
138-
download:
139-
- features/fixtures/mazerunner/mazerunner_macos_2020.zip
140-
upload:
141-
- maze_output/**/*
142-
- '*-mazerunner.log'
143-
- 'clear_cache.log'
144-
- maze_output/metrics.csv
145-
test-collector#v1.10.2:
146-
files: "reports/TEST-*.xml"
147-
format: "junit"
148-
branch: "^main|next$$"
149-
commands:
150-
- features/scripts/run-macos-ci-tests.sh release
151-
152-
- label: Run Windows e2e tests for Unity 2020
153-
timeout_in_minutes: 60
154-
depends_on: build-windows-fixture-2020
155-
agents:
156-
queue: windows-unity-wsl
157-
env:
158-
UNITY_PERFORMANCE_VERSION: *2020
159-
plugins:
160-
'artifacts#v1.5.0':
161-
download:
162-
- features/fixtures/mazerunner/build/Windows-2020.zip
163-
upload:
164-
- maze_output/**/*
165-
- '*-mazerunner.log'
166-
- 'clear_cache.log'
167-
- maze_output/metrics.csv
168-
test-collector#v1.10.2:
169-
files: "reports/TEST-*.xml"
170-
format: "junit"
171-
branch: "^main|next$$"
172-
commands:
173-
- features/scripts/run-windows-ci-tests.sh release
174-
175-
- label: ':bitbar: Run Android e2e tests for Unity 2020'
176-
timeout_in_minutes: 60
177-
depends_on: build-android-fixture-2020
178-
agents:
179-
queue: opensource
180-
plugins:
181-
'artifacts#v1.9.0':
182-
download:
183-
- features/fixtures/mazerunner/mazerunner_2020.apk
184-
upload:
185-
- maze_output/**/*
186-
'docker-compose#v4.8.0':
187-
pull: maze-runner
188-
run: maze-runner
189-
service-ports: true
190-
command:
191-
- '--app=/app/features/fixtures/mazerunner/mazerunner_2020.apk'
192-
- '--farm=bb'
193-
- '--device=ANDROID_9|ANDROID_10|ANDROID_11|ANDROID_12|ANDROID_13'
194-
- '--appium-version=1.22'
195-
- '--no-tunnel'
196-
- '--aws-public-ip'
197-
- '--fail-fast'
198-
- '--exclude=features/dev.feature'
199-
test-collector#v1.10.2:
200-
files: "reports/TEST-*.xml"
201-
format: "junit"
202-
branch: "^main|next$$"
203-
concurrency: 25
204-
concurrency_group: bitbar
205-
concurrency_method: eager
206-
207-
- label: ':bitbar: Run iOS e2e tests for Unity 2020'
208-
timeout_in_minutes: 60
209-
depends_on: build-ios-fixture-2020
210-
agents:
211-
queue: opensource
212-
plugins:
213-
'artifacts#v1.9.0':
214-
download:
215-
- features/fixtures/mazerunner/mazerunner_2020.ipa
216-
upload:
217-
- maze_output/**/*
218-
'docker-compose#v4.8.0':
219-
pull: maze-runner
220-
run: maze-runner
221-
service-ports: true
222-
command:
223-
- '--app=/app/features/fixtures/mazerunner/mazerunner_2020.ipa'
224-
- '--farm=bb'
225-
- '--device=IOS_15'
226-
- '--no-tunnel'
227-
- '--aws-public-ip'
228-
- '--fail-fast'
229-
- '--exclude=features/dev.feature'
230-
test-collector#v1.10.2:
231-
files: "reports/TEST-*.xml"
232-
format: "junit"
233-
branch: "^main|next$$"
234-
concurrency: 25
235-
concurrency_group: bitbar
236-
concurrency_method: eager
237-
238-
239-

features/fixtures/mazerunner/Assets/Scripts/Main.cs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,13 @@ public static void ClearIOSData()
189189

190190
public static void Log(string msg)
191191
{
192-
_instance.DebugText.text += Environment.NewLine + msg;
193-
Debug.Log(msg);
192+
try
193+
{
194+
_instance.DebugText.text += Environment.NewLine + msg;
195+
Debug.Log(msg);
196+
}
197+
catch { }
198+
194199
}
195200

196201
}

0 commit comments

Comments
 (0)