Error executing command as another user: Not authorized #12874
-
When I try to install in a GitHub workflow Omg, why?
I tried Full workflow: https://github.com/netpanzer/netpanzer/blob/01e61d0807e86b33be96344340d7675a81ef6421/.github/workflows/c-cpp.yml |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Because for reasons I don't understand if your run |
Beta Was this translation helpful? Give feedback.
-
It looks like you're using GitHub Cache for the entire build directory. So running What prefix was the cache originally configured with? I'm betting this is a bug you fixed when updating your CI configuration but the cache is preserving the bug. Aside: this is why I would not cache the build directory, but instead use |
Beta Was this translation helpful? Give feedback.
It looks like you're using GitHub Cache for the entire build directory. So running
meson setup
and passing the "prefix" option is having no effect.What prefix was the cache originally configured with? I'm betting this is a bug you fixed when updating your CI configuration but the cache is preserving the bug.
Aside: this is why I would not cache the build directory, but instead use
ccache
and persist your CCACHE_DIR.