Skip to content
Open
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
7 changes: 4 additions & 3 deletions .pipelines/foundry-local-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,12 +203,13 @@ extends:
parameters:
repoName: neutron-server
ref: refs/heads/${{ parameters.neutronServerBranch }}
# AcesShared macOS agents don't have git-lfs pre-installed.
# Must be installed before checking out test-data-shared so LFS files are pulled.
- script: brew install git-lfs && git lfs install
displayName: 'Install Git LFS'
- template: .pipelines/templates/checkout-steps.yml@self
parameters:
repoName: test-data-shared
# AcesShared macOS agents don't have git-lfs pre-installed
- script: brew install git-lfs && git lfs install
displayName: 'Install Git LFS'
- template: .pipelines/templates/build-core-steps.yml@self
parameters:
flavor: osx-arm64
Expand Down
3 changes: 1 addition & 2 deletions .pipelines/templates/build-core-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,7 @@ steps:
projects: '$(nsRoot)/src/FoundryLocalCore/Core/Core.csproj'
arguments: '--no-restore -r ${{ parameters.flavor }} /p:Platform=${{ parameters.platform }} /p:IncludeWebService=true /p:Configuration=Release'

# FLC tests on osx-arm64 are flaky in CI, will investigate separately. Skip for now since the main goal of this job is to produce the AOT binary.
- ${{ if or(eq(parameters.flavor, 'win-x64'), eq(parameters.flavor, 'linux-x64')) }}:
- ${{ if or(eq(parameters.flavor, 'win-x64'), eq(parameters.flavor, 'linux-x64'), eq(parameters.flavor, 'osx-arm64')) }}:
- task: DotNetCoreCLI@2
displayName: 'Restore FLC Tests ${{ parameters.flavor }}'
inputs:
Expand Down
Loading