We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm experiencing the very same issue as #23.
I have the following script:
docker run \ --rm \ --user "$(id -u):$(id -g)" \ --volume "${PROJECT_ROOT}":/src:Z \ --workdir /src \ tinygo/tinygo:"${TINYGO_VERSION}" \ tinygo build \ -target=wasi \ -scheduler=none \ -o "${OUT}" \ "${IN}"
If I run it on my local mac (m1), I get:
➜ TINYGO_VERSION=0.31.2 ./build_wasm.sh ${PWD} etc/wasm/fn/simple_process.go etc/wasm/fn/simple_process.wasm error: mkdir /.cache: permission denied make: *** [wasm/build] Error 1
Which would works if I remove the --user flag on my local computer, but would fail on GitHub Action:
--user
error: open etc/wasm/fn/simple_process.wasm: permission denied make: *** [Makefile:130: wasm/build] Error 1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm experiencing the very same issue as #23.
I have the following script:
If I run it on my local mac (m1), I get:
Which would works if I remove the
--user
flag on my local computer, but would fail on GitHub Action:The text was updated successfully, but these errors were encountered: