Fix VSTS config for release builds
This commit is contained in:
parent
bcbcb4c643
commit
d2a950e054
1 changed files with 12 additions and 21 deletions
29
vsts.yml
29
vsts.yml
|
@ -44,34 +44,25 @@ steps:
|
||||||
condition: and(succeeded(), eq(variables['ELECTRON_RELEASE'], '1'))
|
condition: and(succeeded(), eq(variables['ELECTRON_RELEASE'], '1'))
|
||||||
|
|
||||||
- bash: |
|
- bash: |
|
||||||
echo 'Testing Electron debug build'
|
echo 'Testing Electron build'
|
||||||
mkdir junit
|
|
||||||
export MOCHA_FILE="junit/test-results.xml"
|
|
||||||
export MOCHA_REPORTER="mocha-junit-reporter"
|
|
||||||
script/test.py --ci --rebuild_native_modules
|
|
||||||
name: Test
|
|
||||||
condition: and(succeeded(), ne(variables['ELECTRON_RELEASE'], '1'))
|
|
||||||
|
|
||||||
- bash: |
|
|
||||||
echo 'Testing Electron release build'
|
|
||||||
mkdir junit
|
mkdir junit
|
||||||
export MOCHA_FILE="junit/test-results.xml"
|
export MOCHA_FILE="junit/test-results.xml"
|
||||||
export MOCHA_REPORTER="mocha-junit-reporter"
|
export MOCHA_REPORTER="mocha-junit-reporter"
|
||||||
|
if [ "$ELECTRON_RELEASE" == "1" ]; then
|
||||||
script/test.py --ci --rebuild_native_modules -c R
|
script/test.py --ci --rebuild_native_modules -c R
|
||||||
|
else
|
||||||
|
script/test.py --ci --rebuild_native_modules
|
||||||
|
fi
|
||||||
name: Test
|
name: Test
|
||||||
condition: and(succeeded(), eq(variables['ELECTRON_RELEASE'], '1'))
|
|
||||||
|
|
||||||
- bash: |
|
- bash: |
|
||||||
echo 'Verifying ffmpeg on debug build'
|
echo 'Verifying ffmpeg on build'
|
||||||
script/verify-ffmpeg.py
|
if [ "$ELECTRON_RELEASE" == "1" ]; then
|
||||||
name: Verify_FFmpeg
|
|
||||||
condition: and(succeeded(), ne(variables['ELECTRON_RELEASE'], '1'))
|
|
||||||
|
|
||||||
- bash: |
|
|
||||||
echo 'Verifying ffmpeg on release build'
|
|
||||||
script/verify-ffmpeg.py -R
|
script/verify-ffmpeg.py -R
|
||||||
|
else
|
||||||
|
script/verify-ffmpeg.py
|
||||||
|
fi
|
||||||
name: Verify_FFmpeg
|
name: Verify_FFmpeg
|
||||||
condition: and(succeeded(), eq(variables['ELECTRON_RELEASE'], '1'))
|
|
||||||
|
|
||||||
- task: PublishTestResults@2
|
- task: PublishTestResults@2
|
||||||
displayName: Publish Test Results
|
displayName: Publish Test Results
|
||||||
|
|
Loading…
Reference in a new issue