Applied updates and changes for CI tests #9
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Build from source on Mac OS. | |
| name: build_macos | |
| on: [push, pull_request] | |
| permissions: read-all | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| include: | |
| - os: macos-14 | |
| configure_options: '' | |
| - os: macos-15 | |
| configure_options: '' | |
| - os: macos-26 | |
| configure_options: '' | |
| - os: macos-26-intel | |
| configure_options: '' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install build dependencies | |
| run: | | |
| brew update -q | |
| brew install -q autoconf automake gettext gnu-sed libtool pkg-config || true | |
| ln -s /usr/local/bin/glibtoolize /usr/local/bin/libtoolize | |
| - name: Download test data | |
| run: | | |
| if test -x "synctestdata.sh"; then ./synctestdata.sh; fi | |
| - name: Building from source | |
| env: | |
| CC: ${{ matrix.compiler }} | |
| run: | | |
| tests/build.sh ${{ matrix.configure_options }} | |
| - name: Run tests | |
| run: | | |
| tests/runtests.sh |