Github macOS automate builds failing, any ideas? #1174
Closed
robertosfield
started this conversation in
General
Replies: 1 comment
-
I've spotted the problem - the install to /usr/local was being without a sudo. The macOS virtual machine that githib was using must have originally been using a user permission for /usr/local but now that's been tighened up. I've fixed the problem with the commit to VulkanSceneGraph/.github/workflows/ci.yml. diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b5204903..78dcc772 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -44,7 +44,7 @@ jobs:
make -j 3 && sudo make install
elif [ "$RUNNER_OS" == "macOS" ]; then
cmake . -DBUILD_SHARED_LIBS=${{matrix.build-shared}}
- make -j 4 && make install
+ make -j 4 && sudo make install
else
echo "$RUNNER_OS not supported"
exit 1
~~~ sh
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi All,
For the last couple of days the VSG's github automated builds that happen each time we check in a commit or submit a PR has been failing due to an error with the macOS install failing:
https://github.com/vsg-dev/VulkanSceneGraph/actions/runs/8849485683/job/24342985502
The part where the error occurs is related to the make install:
I haven't changed anything in the VSG related to CMake recently, so it looks like there is a server issue, either github have changed permissions for the macOS builds so that one can't install to /usr/local any more.
Has anyone else come across this issue? Any ideas?
Beta Was this translation helpful? Give feedback.
All reactions