[Mod] build: Makefile: Remove -ffast-math in order to avoid warnings … #786
This file contains 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
name: macOS 13 Makefile | |
on: | |
push: | |
branches: [ OpenMPT-1.29 ] | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: update Homebrew | |
run: brew update | |
- name: fixup GitHub Homebrew python breakage | |
run: brew unlink [email protected] && brew link --overwrite [email protected] | |
- name: upgrade packages | |
run: brew upgrade | |
- name: install dependencies | |
run: brew install p7zip help2man doxygen autoconf-archive mpg123 libogg libvorbis portaudio flac libsndfile sdl2 | |
- name: setup parallel make | |
run: echo "MAKEFLAGS=-j$(sysctl -n hw.ncpu)" >> $GITHUB_ENV | |
- name: make | |
run: make STRICT=1 FORCE_DEPS=1 NO_PULSEAUDIO=1 | |
- name: make check | |
run: make STRICT=1 FORCE_DEPS=1 NO_PULSEAUDIO=1 check |