CI builds seem faster on macOS, this change prepares the scripts to move CI to macOS machines for Android builds.
7 lines
161 B
Bash
Executable File
7 lines
161 B
Bash
Executable File
#!/bin/bash
|
|
|
|
curl -OL https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-mac.zip
|
|
unzip -q ninja-mac.zip
|
|
chmod +x ninja
|
|
export PATH="$PWD:$PATH"
|