-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #145 from bugsnag/release-v1.3.0
Release v1.3.0
- Loading branch information
Showing
20 changed files
with
356 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,226 @@ | ||
steps: | ||
# | ||
# Build Plugins | ||
# | ||
|
||
# UE 4.25 | ||
- label: 'Build Plugin - 4.25 Mac' | ||
agents: | ||
queue: opensource-mac-cocoa-10.15 | ||
env: | ||
UE_VERSION: "4.25" | ||
DEVELOPER_DIR: "/Applications/Xcode12.app" | ||
commands: | ||
- rm -rf "/Users/administrator/Library/Logs/Unreal Engine/LocalBuildLogs/*" | ||
- make package | ||
plugins: | ||
artifacts#v1.5.0: | ||
upload: | ||
- "/Users/administrator/Library/Logs/Unreal Engine/LocalBuildLogs/*" | ||
artifact_paths: [Build/Plugin/*.zip] | ||
timeout_in_minutes: 30 | ||
key: plugin_4_25 | ||
|
||
# UE 4.26 | ||
- label: 'Build Plugin - 4.26 Mac' | ||
agents: | ||
queue: opensource-arm-mac-cocoa-12 | ||
env: | ||
UE_VERSION: "4.26" | ||
DEVELOPER_DIR: "/Applications/Xcode13.app" | ||
commands: | ||
- rm -rf "/Users/administrator/Library/Logs/Unreal Engine/LocalBuildLogs/*" | ||
- make package | ||
plugins: | ||
artifacts#v1.5.0: | ||
upload: | ||
- "/Users/administrator/Library/Logs/Unreal Engine/LocalBuildLogs/*" | ||
artifact_paths: [Build/Plugin/*.zip] | ||
timeout_in_minutes: 30 | ||
key: plugin_4_26 | ||
|
||
# UE 5.0EA | ||
- label: 'Build Plugin - 5.0EA Mac' | ||
agents: | ||
queue: opensource-mac-cocoa-10.15 | ||
env: | ||
UE_VERSION: "5.0EA" | ||
DEVELOPER_DIR: "/Applications/Xcode12.app" | ||
commands: | ||
- rm -rf "/Users/administrator/Library/Logs/Unreal Engine/LocalBuildLogs/*" | ||
- make package | ||
plugins: | ||
artifacts#v1.5.0: | ||
upload: | ||
- "/Users/administrator/Library/Logs/Unreal Engine/LocalBuildLogs/*" | ||
artifact_paths: [Build/Plugin/*.zip] | ||
timeout_in_minutes: 30 | ||
key: plugin_5_0ea | ||
|
||
# | ||
# Build Test Fixtures | ||
# | ||
|
||
# UE 5.0EA | ||
- name: ':android: Build E2E - 5.0EA Android' | ||
depends_on: plugin_5_0ea | ||
agents: | ||
queue: opensource-mac-cocoa-10.15 | ||
env: | ||
UE_VERSION: "5.0EA" | ||
DEVELOPER_DIR: "/Applications/Xcode12.app" | ||
plugins: | ||
artifacts#v1.5.0: | ||
download: Build/Plugin/Bugsnag-*-UE_5.0EA-macOS.zip | ||
upload: | ||
- build/TestFixture-Android-Shipping-5.0EA-arm64.apk | ||
- build/TestFixture-Android-Shipping-5.0EA-armv7.apk | ||
- "/Users/administrator/Library/Logs/Unreal Engine/LocalBuildLogs/*" | ||
commands: | ||
- rm -rf "/Users/administrator/Library/Logs/Unreal Engine/LocalBuildLogs/*" | ||
- features/scripts/build-fixture.sh Android | ||
timeout_in_minutes: 60 | ||
key: android_fixture_5_0ea | ||
|
||
- name: ':ios: Build E2E - 5.0EA iOS' | ||
depends_on: plugin_5_0ea | ||
agents: | ||
queue: opensource-mac-cocoa-10.15 | ||
env: | ||
UE_VERSION: "5.0EA" | ||
DEVELOPER_DIR: "/Applications/Xcode12.app" | ||
plugins: | ||
artifacts#v1.5.0: | ||
download: Build/Plugin/Bugsnag-*-UE_5.0EA-macOS.zip | ||
upload: | ||
- build/TestFixture-IOS-Shipping-5.0EA.dSYM | ||
- build/TestFixture-IOS-Shipping-5.0EA.ipa | ||
- "/Users/administrator/Library/Logs/Unreal Engine/LocalBuildLogs/*" | ||
commands: | ||
- rm -rf "/Users/administrator/Library/Logs/Unreal Engine/LocalBuildLogs/*" | ||
- features/scripts/build-fixture.sh IOS | ||
timeout_in_minutes: 60 | ||
key: ios_fixture_5_0ea | ||
|
||
- name: ':mac: Build E2E - 5.0EA Mac' | ||
depends_on: plugin_5_0ea | ||
agents: | ||
queue: opensource-mac-cocoa-10.15 | ||
env: | ||
UE_VERSION: "5.0EA" | ||
DEVELOPER_DIR: "/Applications/Xcode12.app" | ||
plugins: | ||
artifacts#v1.5.0: | ||
download: Build/Plugin/Bugsnag-*-UE_5.0EA-macOS.zip | ||
upload: | ||
- TestFixture-macOS-5.0EA.zip | ||
- "/Users/administrator/Library/Logs/Unreal Engine/LocalBuildLogs/*" | ||
commands: | ||
- rm -rf "/Users/administrator/Library/Logs/Unreal Engine/LocalBuildLogs/*" | ||
- features/scripts/build-fixture.sh Mac | ||
timeout_in_minutes: 90 | ||
key: mac_fixture_5_0ea | ||
|
||
# | ||
# E2E Tests | ||
# | ||
|
||
# UE 4.27 | ||
- label: 'E2E Tests - 4.27 Android 11 (32-bit)' | ||
depends_on: android_fixture_4_27 | ||
timeout_in_minutes: 30 | ||
agents: | ||
queue: opensource | ||
plugins: | ||
artifacts#v1.3.0: | ||
download: | ||
- "build/TestFixture-Android-Shipping-4.27-armv7.apk" | ||
upload: ["maze_output/failed/**/*"] | ||
docker-compose#v3.3.0: | ||
run: maze-runner | ||
command: | ||
- "--app=/app/build/TestFixture-Android-Shipping-4.27-armv7.apk" | ||
- "--appium-version=1.17.0" | ||
- "--device=ANDROID_11_0" | ||
- "--farm=bs" | ||
- "--order=random" | ||
concurrency: 9 | ||
concurrency_group: browserstack-app | ||
concurrency_method: eager | ||
retry: | ||
automatic: | ||
- exit_status: -1 # Agent was lost | ||
limit: 2 | ||
|
||
# UE 5.0EA | ||
- label: 'E2E Tests - 5.0EA Android 11' | ||
depends_on: android_fixture_5_0ea | ||
timeout_in_minutes: 30 | ||
agents: | ||
queue: opensource | ||
plugins: | ||
artifacts#v1.3.0: | ||
download: | ||
- build/TestFixture-Android-Shipping-5.0EA-arm64.apk | ||
upload: ["maze_output/failed/**/*"] | ||
docker-compose#v3.3.0: | ||
run: maze-runner | ||
command: | ||
- "--app=/app/build/TestFixture-Android-Shipping-5.0EA-arm64.apk" | ||
- "--appium-version=1.17.0" | ||
- "--device=ANDROID_11_0" | ||
- "--farm=bs" | ||
- "--order=random" | ||
concurrency: 9 | ||
concurrency_group: browserstack-app | ||
concurrency_method: eager | ||
retry: | ||
automatic: | ||
- exit_status: -1 # Agent was lost | ||
limit: 2 | ||
|
||
# TODO: PLAT-8147 | ||
# - label: 'E2E Tests - 5.0EA iOS 13' | ||
# depends_on: ios_fixture_5_0ea | ||
# timeout_in_minutes: 30 | ||
# agents: | ||
# queue: opensource | ||
# plugins: | ||
# artifacts#v1.3.0: | ||
# download: | ||
# - build/TestFixture-IOS-Shipping-5.0EA.ipa | ||
# - build/TestFixture-IOS-Shipping-5.0EA.dSYM | ||
# upload: ["maze_output/failed/**/*"] | ||
# docker-compose#v3.3.0: | ||
# run: maze-runner | ||
# command: | ||
# - "--app=/app/build/TestFixture-IOS-Shipping-5.0EA.ipa" | ||
# - "--appium-version=1.17.0" | ||
# - "--device=IOS_13" | ||
# - "--farm=bs" | ||
# - "--order=random" | ||
# concurrency: 9 | ||
# concurrency_group: browserstack-app | ||
# concurrency_method: eager | ||
# retry: | ||
# automatic: | ||
# - exit_status: -1 # Agent was lost | ||
# limit: 2 | ||
|
||
- label: 'E2E Tests - 5.0EA macOS 10.15' | ||
depends_on: mac_fixture_5_0ea | ||
timeout_in_minutes: 10 | ||
agents: | ||
queue: opensource-mac-cocoa-10.15 | ||
plugins: | ||
artifacts#v1.5.0: | ||
download: | ||
- TestFixture-macOS-5.0EA.zip | ||
upload: ["maze_output/failed/**/*"] | ||
commands: | ||
- echo '--- Extracting test fixture' | ||
- unzip TestFixture-macOS-5.0EA.zip | ||
- echo '--- Installing dependencies' | ||
- bundle install | ||
- echo '--- Running tests' | ||
- bundle exec maze-runner --os=macos |
Oops, something went wrong.