Binaries MacOS-13,14,15 (macos-gcc) #12
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: Binaries MacOS-12 (macos32gcc) | |
on: | |
workflow_dispatch: | |
branches: [ master ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies on MacOS and compile and produce BFS exes and standalone ME application | |
run: | | |
echo `uname -a` | |
uname -r | |
brew install xquartz | |
brew install gcc | |
brew install make | |
export PATH=/usr/local/opt/make/libexec/gnubin/:PATH | |
- name: make bfs binary | |
run: make -f macos32gcc.gmk bfs/bin CC=gcc-11 | |
- name: make mec binary | |
run: /usr/local/opt/make/libexec/gnubin/make -f macos32gcc.gmk mec | |
- name: make mew binary | |
run: /usr/local/opt/make/libexec/gnubin/make -f macos32gcc.gmk mew | |
- name: make mecb binary | |
run: /usr/local/opt/make/libexec/gnubin/make -f macos32gcc.gmk mecb | |
- name: make mewb binary | |
run: /usr/local/opt/make/libexec/gnubin/make -f macos32gcc.gmk mewb | |