summaryrefslogtreecommitdiffstats
path: root/.github/workflows/mac-build.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/mac-build.yml')
-rw-r--r--.github/workflows/mac-build.yml24
1 files changed, 10 insertions, 14 deletions
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml
index 0063b9d..178ffa9 100644
--- a/.github/workflows/mac-build.yml
+++ b/.github/workflows/mac-build.yml
@@ -11,7 +11,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Prepare
- run: touch tclStubInit.c tclOOStubInit.c
+ run: touch tclStubInit.c tclOOStubInit.c tclOOScript.h
working-directory: generic
- name: Build
run: make all
@@ -24,12 +24,11 @@ jobs:
runs-on: macos-11.0
strategy:
matrix:
- symbols:
- - "no"
- - "mem"
- dtrace:
- - "no"
- - "yes"
+ cfgopt:
+ - ""
+ - "--disable-shared"
+ - "--enable-symbols"
+ - "--enable-symbols=mem"
defaults:
run:
shell: bash
@@ -39,14 +38,14 @@ jobs:
uses: actions/checkout@v2
- name: Prepare
run: |
- touch tclStubInit.c tclOOStubInit.c
+ touch tclStubInit.c tclOOStubInit.c tclOOScript.h
mkdir "$HOME/install dir"
working-directory: generic
- - name: Configure (symbols=${{ matrix.symbols }} dtrace=${{ matrix.dtrace }})
+ - name: Configure ${{ matrix.cfgopt }}
# Note that macOS is always a 64 bit platform
- run: ./configure --enable-64bit --enable-framework ${CFGOPT} "--prefix=$HOME/install dir" || (cat config.log && exit 1)
+ run: ./configure --enable-64bit --enable-dtrace --enable-framework ${CFGOPT} "--prefix=$HOME/install" || (cat config.log && exit 1)
env:
- CFGOPT: --enable-symbols=${{ matrix.symbols }} --enable-dtrace=${{ matrix.dtrace }}
+ CFGOPT: ${{ matrix.cfgopt }}
- name: Build
run: |
make all tcltest
@@ -56,6 +55,3 @@ jobs:
env:
ERROR_ON_FAILURES: 1
MAC_CI: 1
- - name: Trial Installation
- run: |
- make install