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
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ concurrency:
jobs:
lint-commit:
name: "lint commit message"
permissions: {}
runs-on: ubuntu-24.04
if: ${{ github.event_name == 'pull_request' }}
steps:
Expand Down Expand Up @@ -145,6 +146,7 @@ jobs:
timeout-minutes: 60
ios:
name: "iOS"
permissions: {}
runs-on: macos-15
steps:
- name: Checkout
Expand Down Expand Up @@ -198,6 +200,7 @@ jobs:
timeout-minutes: 60
ios-template:
name: "iOS [template]"
permissions: {}
strategy:
matrix:
template: [all, ios]
Expand Down Expand Up @@ -244,6 +247,7 @@ jobs:
timeout-minutes: 60
android:
name: "Android"
permissions: {}
strategy:
matrix:
runner: [ubuntu-24.04, windows-2025]
Expand Down Expand Up @@ -291,6 +295,7 @@ jobs:
timeout-minutes: 60
android-template:
name: "Android [template]"
permissions: {}
strategy:
matrix:
template: [all, android]
Expand Down Expand Up @@ -331,6 +336,7 @@ jobs:
timeout-minutes: 60
macos:
name: "macOS"
permissions: {}
runs-on: macos-15
if: ${{ github.event_name != 'schedule' }}
steps:
Expand Down Expand Up @@ -402,6 +408,7 @@ jobs:
timeout-minutes: 60
macos-template:
name: "macOS [template]"
permissions: {}
strategy:
matrix:
template: [all, macos]
Expand Down Expand Up @@ -443,6 +450,7 @@ jobs:
timeout-minutes: 60
visionos:
name: "visionOS"
permissions: {}
runs-on: macos-15
if: ${{ github.event_name != 'schedule' }}
steps:
Expand Down Expand Up @@ -492,6 +500,7 @@ jobs:
timeout-minutes: 60
visionos-template:
name: "visionOS [template]"
permissions: {}
strategy:
matrix:
template: [all, visionos]
Expand Down Expand Up @@ -533,6 +542,7 @@ jobs:
timeout-minutes: 60
windows:
name: "Windows"
permissions: {}
runs-on: windows-2025
strategy:
matrix:
Expand Down Expand Up @@ -590,6 +600,7 @@ jobs:
timeout-minutes: 60
windows-template:
name: "Windows [template]"
permissions: {}
runs-on: windows-2025
if: ${{ github.event_name != 'schedule' }}
strategy:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/rnx-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ on:
jobs:
build-android:
name: Build Android
permissions: {}
if: ${{ github.event.inputs.platform == 'android' }}
runs-on: ubuntu-24.04
steps:
Expand Down Expand Up @@ -57,6 +58,7 @@ jobs:
retention-days: 14
build-ios:
name: Build iOS
permissions: {}
if: ${{ github.event.inputs.platform == 'ios' }}
runs-on: macos-14
env:
Expand Down Expand Up @@ -116,6 +118,7 @@ jobs:
retention-days: 14
build-macos:
name: Build macOS
permissions: {}
if: ${{ github.event.inputs.platform == 'macos' }}
runs-on: macos-14
steps:
Expand Down Expand Up @@ -150,6 +153,7 @@ jobs:
retention-days: 14
build-windows:
name: Build Windows
permissions: {}
if: ${{ github.event.inputs.platform == 'windows' }}
runs-on: windows-2022
steps:
Expand Down Expand Up @@ -192,6 +196,7 @@ jobs:
retention-days: 14
distribute:
name: Distribute build
permissions: {}
needs: [build-android, build-ios]
runs-on: ubuntu-24.04
if: ${{ github.event.inputs.distribution != 'local' && !cancelled() && !failure() }} # `success()` excludes skipped jobs
Expand Down
Loading