Skip to content

Commit

Permalink
[f8c52a8c53]: CI: Add 32-bit Linux job
Browse files Browse the repository at this point in the history
  • Loading branch information
jan.nijtmans committed Nov 17, 2023
1 parent b286637 commit df18d93
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,20 @@ jobs:
- "CFLAGS=-ftrapv"
- "CFLAGS=-DTCL_UTF_MAX=4"
- "CFLAGS=-DTCL_UTF_MAX=6"
# Duplicated below
- "CFLAGS=-m32 CPPFLAGS=-m32 LDFLAGS=-m32 --disable-64bit"
defaults:
run:
shell: bash
working-directory: unix
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install 32-bit dependencies if needed
# Duplicated from above
if: ${{ matrix.cfgopt == 'CFLAGS=-m32 CPPFLAGS=-m32 LDFLAGS=-m32 --disable-64bit' }}
run: |
sudo apt install gcc-multilib libc6-dev-i386
- name: Prepare
run: |
touch tclStubInit.c tclOOStubInit.c
Expand Down

0 comments on commit df18d93

Please sign in to comment.