Skip to content

Commit e36df21

Browse files
authored
[ci] Do not fail on standard error (#267)
1 parent aa0a787 commit e36df21

File tree

1 file changed

+1
-33
lines changed

1 file changed

+1
-33
lines changed

azure-pipelines.yml

Lines changed: 1 addition & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ jobs:
5555
sed -i 's/"-Wno-unused-but-set-variable",//g' build/config/compiler/BUILD.gn
5656
displayName: Disable build flags
5757
workingDirectory: $(Pipeline.Workspace)/src
58-
failOnStderr: true
5958
- bash: |
6059
flutter/tools/gn \
6160
--target-os linux \
@@ -71,40 +70,9 @@ jobs:
7170
--embedder-for-target \
7271
--build-tizen-shell
7372
ninja -C out/linux_$(mode)_$(arch)
73+
cp out/linux_$(mode)_$(arch)/libflutter_*.so $(Build.StagingDirectory)
7474
displayName: Build
7575
workingDirectory: $(Pipeline.Workspace)/src
7676
failOnStderr: true
77-
- bash: |
78-
OUTDIR=$(Build.StagingDirectory)
79-
cp out/linux_$(mode)_$(arch)/libflutter_*.so $OUTDIR
80-
if [[ $(System.JobName) == "tizen-arm-release" ]]; then
81-
mkdir $OUTDIR/tizen-common
82-
cp -r out/linux_$(mode)_$(arch)/{cpp_client_wrapper,icu,public} $OUTDIR/tizen-common
83-
rm $OUTDIR/tizen-common/cpp_client_wrapper/engine_method_result.cc
84-
fi
85-
displayName: Copy artifacts
86-
workingDirectory: $(Pipeline.Workspace)/src
87-
failOnStderr: true
8877
- publish: $(Build.StagingDirectory)
8978
artifact: $(System.JobName)
90-
- job: release
91-
dependsOn: build
92-
pool:
93-
name: Default
94-
demands: agent.os -equals Linux
95-
workspace:
96-
clean: outputs
97-
steps:
98-
- download: current
99-
- bash: |
100-
mv $(Pipeline.Workspace)/tizen-arm-release/tizen-common .
101-
mv $(Pipeline.Workspace)/tizen-* .
102-
for x in $(ls -d1 tizen-*); do
103-
echo "Archiving $x.zip..."
104-
(cd $x; zip -rq $(Build.StagingDirectory)/$x.zip *)
105-
done
106-
displayName: Create releases
107-
workingDirectory: $(Build.BinariesDirectory)
108-
failOnStderr: true
109-
- publish: $(Build.StagingDirectory)
110-
artifact: release

0 commit comments

Comments
 (0)