diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 34abe93ba3..4329b4309e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,6 +27,8 @@ jobs: ubuntu-latest, # latest available X86_64 target macos-12, + # latest is ARM + macos-latest, ] steps: - name: Checkout @@ -49,6 +51,14 @@ jobs: if: matrix.os == 'ubuntu-latest' run: sudo apt-get update && sudo apt-get install tcl-dev + - name: Setup tcl (macos-latest) + if: matrix.os == 'macos-latest' + run: brew install tcl-tk + + - name: Setup SWIG (macos-latest) + if: matrix.os == 'macos-latest' + run: brew install swig + - name: build env: # instructs SCons to print debug statements to stdout