mirror of
https://github.com/tcltk/tcl.git
synced 2026-05-29 00:27:49 +08:00
Some checks failed
Linux / plan (push) Has been cancelled
Linux / gcc (push) Has been cancelled
macOS / plan (push) Has been cancelled
macOS / xcode (push) Has been cancelled
macOS / clang (push) Has been cancelled
Build Binaries / Linux (push) Has been cancelled
Build Binaries / macOS (push) Has been cancelled
Build Binaries / Windows (push) Has been cancelled
Build Binaries / Combine Artifacts (prototype) (push) Has been cancelled
Windows / plan (push) Has been cancelled
Windows / msvc (push) Has been cancelled
Windows / gcc (push) Has been cancelled
107 lines
2.9 KiB
YAML
107 lines
2.9 KiB
YAML
name: macOS
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
- "core-9-0-branch"
|
|
tags:
|
|
- "core-*"
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
plan:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
clang: ${{ steps.matrix.outputs.clang }}
|
|
steps:
|
|
- name: Select build matrix based on branch name
|
|
id: matrix
|
|
run: |
|
|
(
|
|
echo clang=$(jq -nc '{config: (if env.IsMatched == "true" then env.FULL else env.PARTIAL end) | fromjson }' )
|
|
) | tee -a $GITHUB_OUTPUT
|
|
env:
|
|
IsMatched: ${{ github.ref_name == 'main' || github.ref_name == 'core-9-0-branch' }}
|
|
# DO NOT CHANGE THIS MATRIX SPEC; IT AFFECTS OUR COST CONTROLS
|
|
FULL: >
|
|
[
|
|
"",
|
|
"--disable-shared",
|
|
"--disable-zipfs",
|
|
"--enable-symbols",
|
|
"--enable-symbols=mem",
|
|
"--enable-symbols=all"
|
|
]
|
|
PARTIAL: >
|
|
[
|
|
"",
|
|
"--enable-symbols=all"
|
|
]
|
|
xcode:
|
|
runs-on: macos-15
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
working-directory: macosx
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
timeout-minutes: 5
|
|
- name: Prepare
|
|
run: |
|
|
touch tclStubInit.c tclOOStubInit.c tclOOScript.h
|
|
working-directory: generic
|
|
- name: Build
|
|
run: make -j4 all
|
|
env:
|
|
CFLAGS: -arch x86_64 -arch arm64
|
|
timeout-minutes: 15
|
|
- name: Run Tests
|
|
run: make -j4 test styles=develop
|
|
env:
|
|
ERROR_ON_FAILURES: 1
|
|
MAC_CI: 1
|
|
timeout-minutes: 15
|
|
clang:
|
|
runs-on: macos-15
|
|
needs: plan
|
|
strategy:
|
|
matrix: ${{ fromJson(needs.plan.outputs.clang) }}
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
working-directory: unix
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
timeout-minutes: 5
|
|
- name: Prepare
|
|
run: |
|
|
touch tclStubInit.c tclOOStubInit.c tclOOScript.h
|
|
mkdir "$HOME/install dir"
|
|
working-directory: generic
|
|
- name: Configure ${{ matrix.config }}
|
|
# Note that macOS is always a 64 bit platform
|
|
run: ./configure --enable-dtrace --enable-framework ${CFGOPT} "--prefix=$HOME/install" || (cat config.log && exit 1)
|
|
env:
|
|
CFLAGS: -arch x86_64 -arch arm64
|
|
CFGOPT: ${{ matrix.config }}
|
|
timeout-minutes: 5
|
|
- name: Build
|
|
run: |
|
|
make -j4 all tcltest
|
|
env:
|
|
CFLAGS: -arch x86_64 -arch arm64
|
|
timeout-minutes: 15
|
|
- name: Info
|
|
run: |
|
|
ulimit -a || echo 'get limit failed'
|
|
make runtest SCRIPT=../.github/workflows/info.tcl || echo 'get info failed'
|
|
- name: Run Tests
|
|
run: |
|
|
make test
|
|
env:
|
|
ERROR_ON_FAILURES: 1
|
|
MAC_CI: 1
|
|
timeout-minutes: 20
|