mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
ci: Use set -e in frontend compiler wrapper scripts.
I doubt the shebang line in the backend script has any effect now, since the frontend scripts just source it directly. v2: * Use "set -e" instead of adding -e to shebang (Eric Engestrom) v3: * Apply to the clang wrapper scripts as well (Eric Engestrom) Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22438>
This commit is contained in:
parent
1915185648
commit
21b190bf44
4 changed files with 12 additions and 0 deletions
|
|
@ -1,3 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
_COMPILER=clang++
|
||||
. compiler-wrapper.sh
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
_COMPILER=clang
|
||||
. compiler-wrapper.sh
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
_COMPILER=g++
|
||||
. compiler-wrapper.sh
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
_COMPILER=gcc
|
||||
. compiler-wrapper.sh
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue