Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
Saadnajmi committed Jan 16, 2025
1 parent 3a1a95e commit d0ab825
Showing 1 changed file with 50 additions and 1 deletion.
51 changes: 50 additions & 1 deletion .ado/jobs/nuget-publish.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,60 @@
parameters:
- name: appleBuildMatrix
type: object
default:
- name: macos_oldarch_jsc
friendly_name: 'macOS, Old Arch, JSC'
sdk: macosx
scheme: RNTester-macOS
packager_platform: 'macos'
new_arch_enabled: '0'
use_hermes: '0'
- name: macos_newarch_jsc
friendly_name: 'macOS, New Arch, JSC'
sdk: macosx
scheme: RNTester-macOS
packager_platform: 'macos'
new_arch_enabled: '1'
use_hermes: '0'
- name: ios_oldarch_jsc
friendly_name: 'iOS, Old Arch, JSC'
sdk: iphonesimulator
scheme: RNTester
packager_platform: 'ios'
new_arch_enabled: '0'
use_hermes: '0'
- name: ios_newarch_jsc
friendly_name: 'iOS, New Arch, JSC'
sdk: iphonesimulator
scheme: RNTester
packager_platform: 'ios'
new_arch_enabled: '1'
use_hermes: '0'
- name: xros_oldarch_jsc
friendly_name: 'xrOS, Old Arch, JSC'
sdk: xrsimulator
scheme: RNTester-visionOS
packager_platform: 'ios'
new_arch_enabled: '0'
use_hermes: '0'
- name: xros_newarch_jsc
friendly_name: 'xrOS, New Arch, JSC'
sdk: xrsimulator
scheme: RNTester-visionOS
packager_platform: 'ios'
new_arch_enabled: '1'
use_hermes: '0'

jobs:
- template: /.ado/jobs/build-test-rntester.yml@self
parameters:
appleBuildMatrix: ${{ parameters.appleBuildMatrix }}

- job: NuGetPublish
displayName: 'Nuget Publish'
dependsOn:
- ${{ each slice in parameters.appleBuildMatrix }}:
- Build_${{ slice.name }}
- ${{ slice.name }}
pool:
vmImage: $(vmImageApple)
variables:
Expand Down

0 comments on commit d0ab825

Please sign in to comment.