We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dda7e8 commit d661563Copy full SHA for d661563
.cl/cloudbuild.yaml
@@ -13,19 +13,14 @@
13
# limitations under the License.
14
15
steps:
16
- # Enable fuse config (Linux - assuming Cloud Build environment is Linux-based)
17
- id: enable-fuse-config
18
name: 'ubuntu'
19
entrypoint: bash
20
args:
21
- '-c'
22
- |
23
- apt-get update && apt-get install -y --no-install-recommends fuse
24
- # Check if FUSE device exists
25
- if [ ! -c /dev/fuse ]; then
26
- echo "Error: FUSE device /dev/fuse not found. FUSE might not be available in this environment."
27
- exit 1
28
- fi
+ apt-get update
+ apt-get install -y sudo
29
sudo sed -i 's/#user_allow_other/user_allow_other/g' /etc/fuse.conf
30
31
- id: run mysql integration tests
0 commit comments