We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2de9711 commit 454f788Copy full SHA for 454f788
1 file changed
.cl/cloudbuild.yaml
@@ -13,19 +13,11 @@
13
# limitations under the License.
14
15
steps:
16
- - id: enable fuse config
+ - id: 'Enable fuse config (Linux)'
17
name: 'alpine'
18
entrypoint: 'sh'
19
- args:
20
- - '-c'
21
- - |
22
- apk add --no-cache sed fuse sudo
23
- echo "Checking for fusermount..."
24
- ls -l /bin/fusermount
25
- ls -l /usr/bin/fusermount
26
- export PATH=/usr/bin:$PATH
27
- echo "PATH: \$PATH"
28
- sudo sed -i "s/#user_allow_other/user_allow_other/g" /etc/fuse.conf
+ args: |
+ sudo sed -i 's/#user_allow_other/user_allow_other/g' /etc/fuse.conf
29
# - id: enable fuse config
30
# name: 'alpine'
31
# entrypoint: 'sh'
@@ -63,6 +55,7 @@ steps:
63
55
args:
64
56
- -c
65
57
- |
58
+ set -eo pipefail
66
59
go test -race -v ./...
67
60
substitutions:
68
61
_VERSION: ${_VERSION}
0 commit comments