mirror of
https://github.com/Radarr/Radarr
synced 2024-12-27 18:30:45 +00:00
Fix azure executable bit warnings
This commit is contained in:
parent
ac662ab3c1
commit
2d78e0ebb6
1 changed files with 16 additions and 26 deletions
|
@ -357,14 +357,12 @@ stages:
|
||||||
- bash: find ${TESTSFOLDER} -name "Radarr.Test.Dummy" -exec chmod a+x {} \;
|
- bash: find ${TESTSFOLDER} -name "Radarr.Test.Dummy" -exec chmod a+x {} \;
|
||||||
displayName: Make Test Dummy Executable
|
displayName: Make Test Dummy Executable
|
||||||
condition: and(succeeded(), ne(variables['osName'], 'Windows'))
|
condition: and(succeeded(), ne(variables['osName'], 'Windows'))
|
||||||
- task: Bash@3
|
- bash: |
|
||||||
|
chmod a+x ${TESTSFOLDER}/test.sh
|
||||||
|
${TESTSFOLDER}/test.sh ${OSNAME} Unit Test
|
||||||
displayName: Run Tests
|
displayName: Run Tests
|
||||||
env:
|
env:
|
||||||
TEST_DIR: $(Build.SourcesDirectory)/_tests
|
TEST_DIR: $(Build.SourcesDirectory)/_tests
|
||||||
inputs:
|
|
||||||
targetType: 'filePath'
|
|
||||||
filePath: '$(testsFolder)/test.sh'
|
|
||||||
arguments: '$(osName) Unit Test'
|
|
||||||
- task: PublishTestResults@2
|
- task: PublishTestResults@2
|
||||||
displayName: Publish Test Results
|
displayName: Publish Test Results
|
||||||
inputs:
|
inputs:
|
||||||
|
@ -413,12 +411,10 @@ stages:
|
||||||
buildType: 'current'
|
buildType: 'current'
|
||||||
artifactName: LinuxTests
|
artifactName: LinuxTests
|
||||||
targetPath: $(testsFolder)
|
targetPath: $(testsFolder)
|
||||||
- task: Bash@3
|
- bash: |
|
||||||
|
chmod a+x ${TESTSFOLDER}/test.sh
|
||||||
|
${TESTSFOLDER}/test.sh Linux Unit Test
|
||||||
displayName: Run Tests
|
displayName: Run Tests
|
||||||
inputs:
|
|
||||||
targetType: 'filePath'
|
|
||||||
filePath: '$(testsFolder)/test.sh'
|
|
||||||
arguments: 'Linux Unit Test'
|
|
||||||
- task: PublishTestResults@2
|
- task: PublishTestResults@2
|
||||||
displayName: Publish Test Results
|
displayName: Publish Test Results
|
||||||
inputs:
|
inputs:
|
||||||
|
@ -506,12 +502,10 @@ stages:
|
||||||
mkdir -p ./bin/
|
mkdir -p ./bin/
|
||||||
cp -r -v ${BUILD_ARTIFACTSTAGINGDIRECTORY}/bin/Radarr/. ./bin/
|
cp -r -v ${BUILD_ARTIFACTSTAGINGDIRECTORY}/bin/Radarr/. ./bin/
|
||||||
displayName: Move Package Contents
|
displayName: Move Package Contents
|
||||||
- task: Bash@3
|
- bash: |
|
||||||
|
chmod a+x ${TESTSFOLDER}/test.sh
|
||||||
|
${TESTSFOLDER}/test.sh ${OSNAME} Integration Test
|
||||||
displayName: Run Integration Tests
|
displayName: Run Integration Tests
|
||||||
inputs:
|
|
||||||
targetType: 'filePath'
|
|
||||||
filePath: '$(testsFolder)/test.sh'
|
|
||||||
arguments: $(osName) Integration Test
|
|
||||||
- task: PublishTestResults@2
|
- task: PublishTestResults@2
|
||||||
inputs:
|
inputs:
|
||||||
testResultsFormat: 'NUnit'
|
testResultsFormat: 'NUnit'
|
||||||
|
@ -579,12 +573,10 @@ stages:
|
||||||
mkdir -p ./bin/
|
mkdir -p ./bin/
|
||||||
cp -r -v ${BUILD_ARTIFACTSTAGINGDIRECTORY}/bin/Radarr/. ./bin/
|
cp -r -v ${BUILD_ARTIFACTSTAGINGDIRECTORY}/bin/Radarr/. ./bin/
|
||||||
displayName: Move Package Contents
|
displayName: Move Package Contents
|
||||||
- task: Bash@3
|
- bash: |
|
||||||
|
chmod a+x ${TESTSFOLDER}/test.sh
|
||||||
|
${TESTSFOLDER}/test.sh Linux Integration Test
|
||||||
displayName: Run Integration Tests
|
displayName: Run Integration Tests
|
||||||
inputs:
|
|
||||||
targetType: 'filePath'
|
|
||||||
filePath: '$(testsFolder)/test.sh'
|
|
||||||
arguments: Linux Integration Test
|
|
||||||
- task: PublishTestResults@2
|
- task: PublishTestResults@2
|
||||||
inputs:
|
inputs:
|
||||||
testResultsFormat: 'NUnit'
|
testResultsFormat: 'NUnit'
|
||||||
|
@ -662,12 +654,10 @@ stages:
|
||||||
mv geckodriver _tests
|
mv geckodriver _tests
|
||||||
displayName: Install Gecko Driver
|
displayName: Install Gecko Driver
|
||||||
condition: and(succeeded(), ne(variables['osName'], 'Windows'))
|
condition: and(succeeded(), ne(variables['osName'], 'Windows'))
|
||||||
- task: Bash@3
|
- bash: |
|
||||||
displayName: Run Automation Tests
|
chmod a+x ${TESTSFOLDER}/test.sh
|
||||||
inputs:
|
${TESTSFOLDER}/test.sh ${OSNAME} Automation Test
|
||||||
targetType: 'filePath'
|
displayName: Run Integration Tests
|
||||||
filePath: '$(testsFolder)/test.sh'
|
|
||||||
arguments: $(osName) Automation Test
|
|
||||||
- task: PublishTestResults@2
|
- task: PublishTestResults@2
|
||||||
inputs:
|
inputs:
|
||||||
testResultsFormat: 'NUnit'
|
testResultsFormat: 'NUnit'
|
||||||
|
|
Loading…
Reference in a new issue