17 lines
427 B
Bash
Executable File
17 lines
427 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
# Install LLVM and system dependencies
|
|
brew update
|
|
brew install llvm@18 ninja
|
|
|
|
# Install Zig
|
|
source ci/download_zig.sh
|
|
download_zig master aarch64-macos
|
|
|
|
# Build and test
|
|
zig build test -Dthird_party_ci=true -Doptimize=Debug
|
|
zig build test -Dthird_party_ci=true -Doptimize=ReleaseSafe
|
|
zig build test -Dthird_party_ci=true -Doptimize=ReleaseSmall
|
|
zig build test -Dthird_party_ci=true -Doptimize=ReleaseFast
|