improve accuracy of a changes line #1
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: macOS | |
on: [push] | |
permissions: | |
contents: read | |
jobs: | |
xcode: | |
runs-on: macos-11 | |
defaults: | |
run: | |
shell: bash | |
working-directory: macosx | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Prepare | |
run: | | |
touch tclStubInit.c tclOOStubInit.c | |
working-directory: generic | |
- name: Build | |
run: make all | |
- name: Run Tests | |
run: make test styles=develop | |
env: | |
ERROR_ON_FAILURES: 1 | |
MAC_CI: 1 | |
clang: | |
runs-on: macos-11 | |
strategy: | |
matrix: | |
cfgopt: | |
- "" | |
- "--disable-shared" | |
- "--enable-symbols" | |
- "--enable-symbols=mem" | |
- "--enable-symbols=all" | |
defaults: | |
run: | |
shell: bash | |
working-directory: unix | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Prepare | |
run: | | |
touch tclStubInit.c tclOOStubInit.c | |
mkdir "$HOME/install dir" | |
working-directory: generic | |
- name: Configure ${{ matrix.cfgopt }} | |
# 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 }} | |
- name: Build | |
run: | | |
make all tcltest | |
- name: Run Tests | |
run: | | |
make test | |
env: | |
ERROR_ON_FAILURES: 1 | |
MAC_CI: 1 |