ci: add macos test build

This commit is contained in:
Krystine Sherwin 2024-02-15 10:00:22 +13:00
parent c9c6b96ba9
commit 154464e7ce
No known key found for this signature in database
1 changed files with 21 additions and 5 deletions

View File

@ -142,7 +142,7 @@ jobs:
CC: clang
strategy:
matrix:
os: [ubuntu-20.04]
os: [ubuntu-20.04, macos-13]
fail-fast: false
steps:
- name: Install Linux Dependencies
@ -213,20 +213,36 @@ jobs:
CC: clang
strategy:
matrix:
os: [ubuntu-20.04]
os: [ubuntu-20.04, macos-13]
steps:
- name: Install Dependencies
- name: Install Linux Dependencies
if: runner.os == 'Linux'
shell: bash
run: |
sudo apt-get update
sudo apt-get install gperf build-essential bison flex libreadline-dev gawk tcl-dev libffi-dev git graphviz xdot pkg-config python3 libboost-system-dev libboost-python-dev libboost-filesystem-dev zlib1g-dev
sudo apt-get install gperf build-essential bison flex libreadline-dev gawk tcl-dev libffi-dev git graphviz xdot pkg-config python python3 libboost-system-dev libboost-python-dev libboost-filesystem-dev zlib1g-dev
- name: Runtime environment
- name: Install macOS Dependencies
if: runner.os == 'macOS'
run: |
brew install bison flex gawk libffi pkg-config bash
- name: Linux runtime environment
if: runner.os == 'Linux'
shell: bash
run: |
echo "${{ github.workspace }}/.local/bin" >> $GITHUB_PATH
echo "procs=$(nproc)" >> $GITHUB_ENV
- name: macOS runtime environment
if: runner.os == 'macOS'
shell: bash
run: |
echo "${{ github.workspace }}/.local/bin" >> $GITHUB_PATH
echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH
echo "$(brew --prefix flex)/bin" >> $GITHUB_PATH
echo "procs=$(sysctl -n hw.ncpu)" >> $GITHUB_ENV
- name: Checkout Yosys
uses: actions/checkout@v4