-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6bd0164
commit af978fb
Showing
14 changed files
with
348 additions
and
10 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
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,197 @@ | ||
aliases: | ||
- &2020 "2020.3.48f1" | ||
- &2021 "2021.3.36f1" | ||
- &2022 "2022.3.22f1" | ||
- &2023 "2023.2.19f1" | ||
|
||
agents: | ||
queue: macos-14 | ||
|
||
steps: | ||
# | ||
# Build Linux test fixtures | ||
# | ||
- label: Build Unity 2020 Linux test fixture | ||
timeout_in_minutes: 30 | ||
key: "linux-2020-fixture" | ||
depends_on: "build-artifacts" | ||
env: | ||
UNITY_VERSION: *2020 | ||
plugins: | ||
artifacts#v1.9.0: | ||
download: | ||
- Bugsnag.unitypackage | ||
upload: | ||
- unity.log | ||
- features/fixtures/maze_runner/build/linux-release-2020.zip | ||
commands: | ||
- scripts/ci-build-linux-fixture.sh release | ||
retry: | ||
automatic: | ||
- exit_status: "*" | ||
limit: 1 | ||
|
||
- label: Build Unity 2021 linux test fixture | ||
timeout_in_minutes: 30 | ||
key: "linux-2021-fixture" | ||
depends_on: "build-artifacts" | ||
env: | ||
UNITY_VERSION: *2021 | ||
commands: | ||
- scripts/ci-build-linux-fixture.sh release | ||
plugins: | ||
artifacts#v1.9.0: | ||
download: | ||
- Bugsnag.unitypackage | ||
upload: | ||
- unity.log | ||
- unity_import.log | ||
- c/linux-release-2021.zip | ||
retry: | ||
automatic: | ||
- exit_status: "*" | ||
limit: 1 | ||
|
||
- label: Build Unity 2021 linux DEV test fixture | ||
timeout_in_minutes: 30 | ||
key: "linux-2021-dev-fixture" | ||
depends_on: "build-artifacts" | ||
env: | ||
UNITY_VERSION: *2021 | ||
commands: | ||
- scripts/ci-build-linux-fixture.sh dev | ||
plugins: | ||
artifacts#v1.9.0: | ||
download: | ||
- Bugsnag.unitypackage | ||
upload: | ||
- unity.log | ||
- unity_import.log | ||
- features/fixtures/maze_runner/build/linux-dev-2021.zip | ||
retry: | ||
automatic: | ||
- exit_status: "*" | ||
limit: 1 | ||
|
||
- label: Build Unity 2022 linux test fixture | ||
timeout_in_minutes: 30 | ||
key: "linux-2022-fixture" | ||
depends_on: "build-artifacts" | ||
env: | ||
UNITY_VERSION: *2022 | ||
commands: | ||
- scripts/ci-build-linux-fixture.sh release | ||
plugins: | ||
artifacts#v1.9.0: | ||
download: | ||
- Bugsnag.unitypackage | ||
upload: | ||
- unity.log | ||
- unity_import.log | ||
- features/fixtures/maze_runner/build/linux-release-2022.zip | ||
retry: | ||
automatic: | ||
- exit_status: "*" | ||
limit: 1 | ||
|
||
- label: Build Unity 2023 linux test fixture | ||
skip: Pending PLAT-12072 | ||
timeout_in_minutes: 30 | ||
key: "linux-2023-fixture" | ||
depends_on: "build-artifacts" | ||
env: | ||
UNITY_VERSION: *2023 | ||
commands: | ||
- scripts/ci-build-linux-fixture.sh release | ||
plugins: | ||
artifacts#v1.9.0: | ||
download: | ||
- Bugsnag.unitypackage | ||
upload: | ||
- unity.log | ||
- unity_import.log | ||
- features/fixtures/maze_runner/build/linux-release-2023.zip | ||
retry: | ||
automatic: | ||
- exit_status: "*" | ||
limit: 1 | ||
|
||
# | ||
# Run linux e2e tests | ||
# | ||
- label: Run linux e2e tests for Unity 2020 | ||
timeout_in_minutes: 30 | ||
depends_on: "linux-2020-fixture" | ||
env: | ||
UNITY_VERSION: *2020 | ||
plugins: | ||
artifacts#v1.9.0: | ||
download: | ||
- features/fixtures/maze_runner/build/linux-release-2020.zip | ||
upload: | ||
- maze_output/**/* | ||
- maze_output/metrics.csv | ||
|
||
command: | ||
- scripts/ci-run-linux-tests.sh release | ||
|
||
- label: Run linux e2e tests for Unity 2021 | ||
timeout_in_minutes: 30 | ||
depends_on: "linux-2021-fixture" | ||
env: | ||
UNITY_VERSION: *2021 | ||
plugins: | ||
artifacts#v1.9.0: | ||
download: | ||
- features/fixtures/maze_runner/build/linux-release-2021.zip | ||
upload: | ||
- maze_output/**/* | ||
- maze_output/metrics.csv | ||
commands: | ||
- scripts/ci-run-linux-tests.sh release | ||
|
||
- label: Run linux e2e DEV tests for Unity 2021 | ||
timeout_in_minutes: 30 | ||
depends_on: "linux-2021-dev-fixture" | ||
env: | ||
UNITY_VERSION: *2021 | ||
plugins: | ||
artifacts#v1.9.0: | ||
download: | ||
- features/fixtures/maze_runner/build/linux-dev-2021.zip | ||
upload: | ||
- maze_output/**/* | ||
- maze_output/metrics.csv | ||
commands: | ||
- scripts/ci-run-linux-tests.sh dev | ||
|
||
- label: Run linux e2e tests for Unity 2022 | ||
timeout_in_minutes: 30 | ||
depends_on: "linux-2022-fixture" | ||
env: | ||
UNITY_VERSION: *2022 | ||
plugins: | ||
artifacts#v1.9.0: | ||
download: | ||
- features/fixtures/maze_runner/build/linux-release-2022.zip | ||
upload: | ||
- maze_output/**/* | ||
- maze_output/metrics.csv | ||
commands: | ||
- scripts/ci-run-linux-tests.sh release | ||
|
||
- label: Run linux e2e tests for Unity 2023 | ||
skip: Pending PLAT-12072 | ||
timeout_in_minutes: 30 | ||
depends_on: "linux-2023-fixture" | ||
env: | ||
UNITY_VERSION: *2023 | ||
plugins: | ||
artifacts#v1.9.0: | ||
download: | ||
- features/fixtures/maze_runner/build/linux-release-2023.zip | ||
upload: | ||
- maze_output/**/* | ||
- maze_output/metrics.csv | ||
commands: | ||
- scripts/ci-run-linux-tests.sh release |
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
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
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
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
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
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
Oops, something went wrong.