File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 6969 run : |
7070 brew install clang-format
7171
72+ - name : Install Rust and protoc
73+ uses : ./.github/workflows/install-rust-and-protoc
74+ with :
75+ github-token : ${{ github.token }}
76+
7277 - name : Install cbindgen
7378 shell : bash
7479 run : cargo install cbindgen
Original file line number Diff line number Diff line change @@ -109,7 +109,10 @@ jobs:
109109
110110 # Initialize composer config directories and fix permissions
111111 mkdir -p "$HOME/.config/composer"
112- sudo mkdir -p /root/.config/composer
112+ # Skip root directory creation on macOS due to SIP
113+ if [[ "${{ matrix.host.OS }}" != "macos" ]]; then
114+ sudo mkdir -p /root/.config/composer
115+ fi
113116
114117 # Make sure root can read the user's composer config
115118 sudo chmod -R 755 "$HOME/.config/composer"
You can’t perform that action at this time.
0 commit comments