diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-01-04 11:47:58 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-01-04 11:47:58 (GMT) |
commit | 6d0b4fcfad9da2898dff20f7ba29f0ed45e5e5ae (patch) | |
tree | 20da0ade4f247d76d2700562129ee5648a412fc1 /.github/workflows/mac-build.yml | |
parent | 2c2578a0600e14b28846874c3019c830176f3fe6 (diff) | |
download | tcl-6d0b4fcfad9da2898dff20f7ba29f0ed45e5e5ae.zip tcl-6d0b4fcfad9da2898dff20f7ba29f0ed45e5e5ae.tar.gz tcl-6d0b4fcfad9da2898dff20f7ba29f0ed45e5e5ae.tar.bz2 |
Sync *.yml changes with Tk. Add OPTS=static,staticpkg Windows build
Diffstat (limited to '.github/workflows/mac-build.yml')
-rw-r--r-- | .github/workflows/mac-build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index 1645bc7..db91343 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -34,7 +34,7 @@ jobs: runs-on: macos-11 strategy: matrix: - cfgopt: + config: - "" - "--disable-shared" - "--enable-symbols" @@ -52,11 +52,11 @@ jobs: touch tclStubInit.c tclOOStubInit.c mkdir "$HOME/install dir" working-directory: generic - - name: Configure ${{ matrix.cfgopt }} + - name: Configure ${{ matrix.config }} # Note that macOS is always a 64 bit platform run: ./configure --enable-64bit --enable-dtrace --enable-framework ${CFGOPT} "--prefix=$HOME/install" || (cat config.log && exit 1) env: - CFGOPT: ${{ matrix.cfgopt }} + CFGOPT: ${{ matrix.config }} - name: Build run: | make all tcltest |