Skip to content

WIP

WIP #196

Workflow file for this run

name: MacOS
on:
push:
branches:
- trunk
- main
pull_request:
branches:
- trunk
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
env:
CTEST_OUTPUT_ON_FAILURE: 1
jobs:
build:
strategy:
matrix:
include:
# - os: "macos-13"
- os: "macos-latest"
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Cache Cargo registry
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Restore vcpkg registry
uses: actions/cache/restore@v4
with:
path: |
build/vcpkg_installed/
build/vcpkg_packages/
key: ${{ runner.os }}-vcpkg-${{ hashFiles('./vcpkg*.json', './vcpkg_overlays/**') }}
- name: install dependencies
run: |
brew install pkg-config autoconf autoconf-archive automake coreutils libtool cmake ninja
- name: Install rust dependencies
run: |
cargo install wasm-tools wit-bindgen-cli || true
- name: configure
run: |
cmake --preset linux-ninja-Debug
- name: Fix WASI SDK macOS compiler
run: |
wasi_sdk="${GITHUB_WORKSPACE}/build/vcpkg_installed/arm64-osx/wasi-sdk"
if [[ -f "${wasi_sdk}/libexec/libclang-cpp.dylib" && ! -f "${wasi_sdk}/lib/libclang-cpp.dylib" ]]; then
cp "${wasi_sdk}/libexec/libclang-cpp.dylib" "${wasi_sdk}/lib/libclang-cpp.dylib"
fi
if [[ -f "${wasi_sdk}/libexec/libLLVM.dylib" && ! -f "${wasi_sdk}/lib/libLLVM.dylib" ]]; then
cp "${wasi_sdk}/libexec/libLLVM.dylib" "${wasi_sdk}/lib/libLLVM.dylib"
fi
for binary in \
"${wasi_sdk}/bin/clang-19" \
"${wasi_sdk}/lib/libclang-cpp.dylib" \
"${wasi_sdk}/lib/libLLVM.dylib"; do
install_name_tool -delete_rpath "@loader_path/../../lib" "${binary}" || true
install_name_tool -add_rpath "@loader_path/../lib" "${binary}" || true
done
test -f "${wasi_sdk}/lib/libclang-cpp.dylib"
test -f "${wasi_sdk}/lib/libLLVM.dylib"
"${wasi_sdk}/bin/clang" --version
- name: build
run: |
cmake --build --preset linux-ninja-Debug
- name: test
working-directory: build
run: |
ctest -VV -E "wit-stub-generation-test"
- name: test-stubs-full (allowed to fail)
working-directory: build
continue-on-error: true
run: |
echo "Running wit-stub-generation-test (failures expected and will be reported)..."
ctest -VV -R "wit-stub-generation-test"
- name: Save vcpkg registry
if: always()
uses: actions/cache/save@v4
with:
path: |
build/vcpkg_installed/
build/vcpkg_packages/
key: ${{ runner.os }}-vcpkg-${{ hashFiles('./vcpkg*.json', './vcpkg_overlays/**') }}
- name: Upload error logs
if: ${{ failure() || cancelled() }}
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-logs
path: ./**/*.log