Skip to content

Commit

Permalink
GHA win-flow: speed-up build (j4), add info section into build
Browse files Browse the repository at this point in the history
  • Loading branch information
sebres committed Nov 5, 2024
1 parent d4200c8 commit 24bb96c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/win-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,15 @@ jobs:
CFGOPT: --enable-64bit ${{ matrix.config }}
timeout-minutes: 5
- name: Build
run: make all
run: make -j4 all
timeout-minutes: 5
- name: Build Test Harness
run: make tcltest
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
Expand Down

0 comments on commit 24bb96c

Please sign in to comment.