This is an automated email from the ASF dual-hosted git repository.
csy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/auron.git
The following commit(s) were added to refs/heads/master by this push:
new 82613c7a [AURON #1771] build-native.sh set -e (#1772)
82613c7a is described below
commit 82613c7a572998e0ea547acb35a26926c5aac1a1
Author: cxzl25 <[email protected]>
AuthorDate: Mon Dec 22 17:51:01 2025 +0800
[AURON #1771] build-native.sh set -e (#1772)
# Which issue does this PR close?
Closes #1771
# Rationale for this change
# What changes are included in this PR?
# Are there any user-facing changes?
# How was this patch tested?
Current
```bash
[INFO] [main] warning: build failed, waiting for other jobs to finish...
[ERROR] [main] cp: target/pre/libauron.dylib: No such file or directory
[INFO] [main] build-checksum updated: 702989478eabd7003d4354a0b19ad24d
[INFO] [main] Native build completed successfully
```
PR
```bash
[INFO] [main] warning: build failed, waiting for other jobs to finish...
[ERROR] Command execution failed.
org.apache.commons.exec.ExecuteException: Process exited with an error: 101
(Exit value: 101)
```
---
dev/mvn-build-helper/build-native.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev/mvn-build-helper/build-native.sh
b/dev/mvn-build-helper/build-native.sh
index 6539204d..87a2377c 100755
--- a/dev/mvn-build-helper/build-native.sh
+++ b/dev/mvn-build-helper/build-native.sh
@@ -17,7 +17,7 @@
# limitations under the License.
#
-set -o pipefail
+set -eo pipefail
# Preserve the calling directory
_CALLING_DIR="$(pwd)"