mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-26 00:05:07 -07:00
linux works! add osx integration tests
This commit is contained in:
parent
e12d03f8e8
commit
3646123bad
1 changed files with 15 additions and 0 deletions
|
@ -252,6 +252,7 @@ stages:
|
|||
archiveFilePatterns: '$(Build.ArtifactStagingDirectory)/**/Lidarr.**.windows.zip'
|
||||
destinationFolder: '$(Build.ArtifactStagingDirectory)/bin'
|
||||
- bash: |
|
||||
ls -R $(BUILD_ARTIFACTSTAGINGDIRECTORY)
|
||||
mkdir -p .\\bin
|
||||
cp -R -v ${BUILD_ARTIFACTSTAGINGDIRECTORY}\\bin\\Lidarr\\* .\\bin
|
||||
- task: Bash@3
|
||||
|
@ -326,6 +327,20 @@ stages:
|
|||
buildType: 'current'
|
||||
artifactName: Tests
|
||||
targetPath: $(testsFolder)
|
||||
- task: DownloadPipelineArtifact@2
|
||||
displayName: Download Build Artifact
|
||||
inputs:
|
||||
buildType: 'current'
|
||||
artifactName: Lidarr
|
||||
itemPattern: '**/Lidarr.**.osx.tar.gz'
|
||||
targetPath: $(Build.ArtifactStagingDirectory)
|
||||
- task: ExtractFiles@1
|
||||
inputs:
|
||||
archiveFilePatterns: '$(Build.ArtifactStagingDirectory)/**/Lidarr.**.osx.tar.gz'
|
||||
destinationFolder: '$(Build.ArtifactStagingDirectory)/bin'
|
||||
- bash: |
|
||||
mkdir ./bin
|
||||
cp -R -v ${BUILD_ARTIFACTSTAGINGDIRECTORY}/bin/Lidarr/* ./bin
|
||||
- task: Bash@3
|
||||
displayName: macOS Integration Tests
|
||||
inputs:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue