File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -173,13 +173,13 @@ stages:
173173 - script : |
174174 set PATH=C:\Library\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;%SWIFT_DEV_PATH%;%ICU_PATH%;%PATH%
175175 swift.exe --version
176- swift.exe build %SWIFTFLAGS%
177- swift.exe test --filter BitByteDataTests %SWIFTFLAGS% %SWIFTTESTFLAGS%
176+ swift.exe build %SWIFTFLAGS% || exit /b %errorlevel%
177+ swift.exe test --filter BitByteDataTests %SWIFTFLAGS% %SWIFTTESTFLAGS% || exit /b %errorlevel%
178178 displayName: 'Build & Test'
179179 - script : |
180180 set PATH=C:\Library\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;%SWIFT_DEV_PATH%;%ICU_PATH%;%PATH%
181181 swift.exe --version
182- swift.exe build -c release %SWIFTFLAGS%
182+ swift.exe build -c release %SWIFTFLAGS% || exit /b %errorlevel%
183183 displayName: 'Build Release'
184184 - stage : deploy
185185 displayName : Deploy
You can’t perform that action at this time.
0 commit comments