Skip to content
New issue

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

Stop removing GCC on MacOS in CI #2321

Merged
merged 2 commits into from
Jun 17, 2024
Merged

Stop removing GCC on MacOS in CI #2321

merged 2 commits into from
Jun 17, 2024

Commits on Jun 16, 2024

  1. Configuration menu
    Copy the full SHA
    105e711 View commit details
    Browse the repository at this point in the history
  2. Give up trying to uninstall GCC

    This is what happens in CI:
    > Run sudo rm -f $(which gcc)
    rm: /usr/bin/gcc: Read-only file system
    
    This seems to indicate that there is no way to move or delete the GCC
    binary, and it will not work to change the PATH to not include /usr/bin
    because that will break a lot of things. Therefore, there probably is
    no easy way to make GCC invisible on the system, so if we want a quick
    fix, then we should give up exercising that code path in CI. The code
    path under test is already difficult to maintain anyway and works on a
    "best effort" basis.
    petervdonovan committed Jun 16, 2024
    Configuration menu
    Copy the full SHA
    47b3bec View commit details
    Browse the repository at this point in the history