tclUnixThrd.c: 'long' may be not long enough to store integer as pointer #3
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: Linux | |
on: [push] | |
permissions: | |
contents: read | |
jobs: | |
gcc: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
cfgopt: | |
- "" | |
- "--disable-shared" | |
- "--enable-symbols" | |
- "--enable-symbols=mem" | |
- "--enable-symbols=all" | |
- "CFLAGS=-DTCL_UTF_MAX=4" | |
- "CFLAGS=-DTCL_UTF_MAX=6" | |
defaults: | |
run: | |
shell: bash | |
working-directory: unix | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Prepare | |
run: | | |
touch tclStubInit.c tclOOStubInit.c | |
working-directory: generic | |
- name: Configure ${{ matrix.cfgopt }} | |
run: | | |
mkdir "${HOME}/install dir" | |
./configure ${CFGOPT} "--prefix=$HOME/install dir" || (cat config.log && exit 1) | |
env: | |
CFGOPT: ${{ matrix.cfgopt }} | |
- name: Build | |
run: | | |
make all | |
- name: Build Test Harness | |
run: | | |
make tcltest | |
- name: Run Tests | |
run: | | |
make test | |
env: | |
ERROR_ON_FAILURES: 1 | |
- name: Test-Drive Installation | |
run: | | |
make install | |
- name: Create Distribution Package | |
run: | | |
make dist | |
- name: Convert Documentation to HTML | |
run: | | |
make html-tcl |