Skip to content

revert: restore original SHA-512 x86 implementation #24

revert: restore original SHA-512 x86 implementation

revert: restore original SHA-512 x86 implementation #24

Workflow file for this run

name: macOS Tests
on:
push:
pull_request:
jobs:
build-macos:
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: |
brew update
brew install cmake icu4c bzip2 lz4 xz zlib googletest
- name: Configure
run: cmake -S tests -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="$(brew --prefix icu4c);$(brew --prefix)"
- name: Build
run: cmake --build build --config Release
- name: Run tests
run: ctest --test-dir build --output-on-failure