mirror of
https://github.com/tcltk/tcl.git
synced 2026-05-29 00:27:49 +08:00
112 lines
3.3 KiB
YAML
112 lines
3.3 KiB
YAML
name: Windows
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
- "core-8-6-branch"
|
|
tags:
|
|
- "core-**"
|
|
permissions:
|
|
contents: read
|
|
env:
|
|
ERROR_ON_FAILURES: 1
|
|
jobs:
|
|
msvc:
|
|
runs-on: windows-2025
|
|
defaults:
|
|
run:
|
|
shell: powershell
|
|
working-directory: win
|
|
strategy:
|
|
matrix:
|
|
config:
|
|
- ""
|
|
- "OPTS=static,msvcrt"
|
|
- "OPTS=static,staticpkg,msvcrt"
|
|
- "OPTS=symbols"
|
|
- "OPTS=symbols STATS=compdbg,memdbg"
|
|
# Using powershell means we need to explicitly stop on failure
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
timeout-minutes: 5
|
|
- name: Init MSVC
|
|
uses: ilammy/msvc-dev-cmd@v1
|
|
timeout-minutes: 5
|
|
- name: Build ${{ matrix.config }}
|
|
run: |
|
|
&nmake -f makefile.vc ${{ matrix.config }} all
|
|
if ($lastexitcode -ne 0) {
|
|
throw "nmake exit code: $lastexitcode"
|
|
}
|
|
timeout-minutes: 5
|
|
- name: Build Test Harness ${{ matrix.config }}
|
|
run: |
|
|
&nmake -f makefile.vc ${{ matrix.config }} tcltest
|
|
if ($lastexitcode -ne 0) {
|
|
throw "nmake exit code: $lastexitcode"
|
|
}
|
|
timeout-minutes: 5
|
|
- name: Run Tests ${{ matrix.config }}
|
|
run: |
|
|
&nmake -f makefile.vc ${{ matrix.config }} test
|
|
if ($lastexitcode -ne 0) {
|
|
throw "nmake exit code: $lastexitcode"
|
|
}
|
|
timeout-minutes: 30
|
|
gcc:
|
|
runs-on: windows-2025
|
|
defaults:
|
|
run:
|
|
shell: msys2 {0}
|
|
working-directory: win
|
|
strategy:
|
|
matrix:
|
|
config:
|
|
- ""
|
|
- "--disable-shared"
|
|
- "--enable-symbols"
|
|
- "--enable-symbols=mem"
|
|
- "--enable-symbols=all"
|
|
# Using powershell means we need to explicitly stop on failure
|
|
steps:
|
|
- name: Install MSYS2
|
|
uses: msys2/setup-msys2@v2
|
|
with:
|
|
msystem: MINGW64
|
|
install: git mingw-w64-x86_64-toolchain make
|
|
timeout-minutes: 10
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
timeout-minutes: 5
|
|
- name: Prepare
|
|
run: |
|
|
touch tclStubInit.c tclOOStubInit.c
|
|
mkdir "${HOME}/install dir"
|
|
working-directory: generic
|
|
- name: Configure ${{ matrix.config }}
|
|
run: |
|
|
./configure ${CFGOPT} "--prefix=$HOME/install dir" || (cat config.log && exit 1)
|
|
env:
|
|
CFGOPT: --enable-64bit ${{ matrix.config }}
|
|
timeout-minutes: 5
|
|
- name: Build
|
|
run: make -j4 all
|
|
timeout-minutes: 5
|
|
- name: Build Test Harness
|
|
run: make -j4 tcltest
|
|
timeout-minutes: 5
|
|
- name: Info
|
|
run: |
|
|
ulimit -a || echo 'get limit failed'
|
|
echo 'puts exe:\t[info nameofexecutable]\nver:\t[info patchlevel]\t[if {![catch tcl::build-info ret]} {set ret}]\nlib:\t[info library]\nplat:\t[lsort -dictionary -stride 2 [array get tcl_platform]]' | make runtest || echo 'get info failed'
|
|
- name: Run Tests
|
|
run: make test
|
|
timeout-minutes: 30
|
|
- name: Install
|
|
run: make install
|
|
timeout-minutes: 5
|
|
|
|
# If you add builds with Wine, be sure to define the environment variable
|
|
# CI_USING_WINE when running them so that broken tests know not to run.
|