Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: Build Unity SDK

name: "Build Unity SDK"
on:
workflow_call:
inputs:
Expand Down
29 changes: 14 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: CI

name: "CI"
on:
push:
paths-ignore:
Expand Down Expand Up @@ -202,7 +201,7 @@ jobs:
# Lower retention period - we only need this to retry CI.
retention-days: 14

android-smoke-test-build:
smoke-test-build-android:
name: Build Android ${{ matrix.unity-version }} Smoke Test
if: ${{ !startsWith(github.ref, 'refs/heads/release/') }}
needs: [smoke-test-create]
Expand All @@ -211,15 +210,15 @@ jobs:
fail-fast: false
matrix:
unity-version: ["2019", "2022", "6000"]
uses: ./.github/workflows/android-smoke-test-build.yml
uses: ./.github/workflows/smoke-test-build-android.yml
with:
unity-version: ${{ matrix.unity-version }}

android-smoke-test-run:
smoke-test-run-android:
name: Run Android ${{ matrix.unity-version }} Smoke Test
if: ${{ !startsWith(github.ref, 'refs/heads/release/') }}
needs: [android-smoke-test-build]
uses: ./.github/workflows/android-smoke-test-run.yml
needs: [smoke-test-build-android]
uses: ./.github/workflows/smoke-test-run-android.yml
with:
unity-version: ${{ matrix.unity-version }}
api-level: ${{ matrix.api-level }}
Expand All @@ -231,7 +230,7 @@ jobs:
init-type: ["runtime", "buildtime"]
unity-version: ["2019", "2022", "6000"]

ios-smoke-test-build:
smoke-test-build-ios:
name: Build iOS ${{ matrix.unity-version }} Smoke Test
if: ${{ !startsWith(github.ref, 'refs/heads/release/') }}
needs: [smoke-test-create]
Expand All @@ -240,30 +239,30 @@ jobs:
fail-fast: false
matrix:
unity-version: ["2019", "2022", "6000"]
uses: ./.github/workflows/ios-smoke-test-build.yml
uses: ./.github/workflows/smoke-test-build-ios.yml
with:
unity-version: ${{ matrix.unity-version }}

ios-smoke-test-compile:
smoke-test-compile-ios:
name: Compile iOS ${{ matrix.unity-version }} Smoke Test
if: ${{ !startsWith(github.ref, 'refs/heads/release/') }}
needs: [ios-smoke-test-build]
needs: [smoke-test-build-ios]
secrets: inherit
strategy:
fail-fast: false
matrix:
unity-version: ["2019", "2022", "6000"]
init-type: ["runtime", "buildtime"]
uses: ./.github/workflows/ios-smoke-test-compile.yml
uses: ./.github/workflows/smoke-test-compile-ios.yml
with:
unity-version: ${{ matrix.unity-version }}
init-type: ${{ matrix.init-type }}

ios-smoke-test-run:
smoke-test-run-ios:
name: Run iOS ${{ matrix.unity-version }} Smoke Test
if: ${{ !startsWith(github.ref, 'refs/heads/release/') }}
needs: [ios-smoke-test-compile]
uses: ./.github/workflows/ios-smoke-test-run.yml
needs: [smoke-test-compile-ios]
uses: ./.github/workflows/smoke-test-run-ios.yml
with:
unity-version: ${{ matrix.unity-version }}
ios-version: ${{ matrix.ios-version }}
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/danger.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: Danger

name: "Danger"
on:
pull_request:
types: [opened, synchronize, reopened, edited, ready_for_review]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format-code.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: format code
name: "Format Code"
on:
pull_request:

Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: Release

name: "Release"
on:
workflow_dispatch:
inputs:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/sdk.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: "Build native SDKs"
on:
workflow_call:
inputs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: "SmokeTest: Build Android"
on:
workflow_call:
inputs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: "SmokeTest: Build iOS"
on:
workflow_call:
inputs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: "SmokeTest: Compile iOS"
on:
workflow_call:
inputs:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/smoke-test-create.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: Create Smoke Test Project

name: "SmokeTest: Create Project"
on:
workflow_call:
inputs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: "SmokeTest: Run Android"
on:
workflow_call:
inputs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: "SmokeTest: Run iOS"
on:
workflow_call:
inputs:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/update-deps.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: Update Dependencies

name: "Update Dependencies"
on:
# Run every day on multiple occasions, with each job running at a different time to limit license-acquisition issues.
schedule:
Expand Down
Loading