Skip to content

Commit

Permalink
2025-01-25 10:19 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
Browse files Browse the repository at this point in the history
  * .github/workflows/vm1-ci.yml
  * .github/workflows/vm2-ci.yml
    * updated to always set number of CPUs for -j GNU make switch,
      using unlimited number of forks (-j without parameter) causes
      'Resource temporarily unavailable' error
  • Loading branch information
druzus committed Jan 25, 2025
1 parent 65a6755 commit 87b5139
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/vm1-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ jobs:
ref: ${{ github.event.client_payload.branch }}

- run: pwd
- run: for f in /usr/include/openssl/*;do echo "=^$f";cat $f;done
- run: ls

- name: Prepare ccache using action
Expand All @@ -96,7 +95,8 @@ jobs:
run: |
set -ex
case ${{matrix.os.name }} in
*bsd) _cpus="sysctl -n hw.ncpu" ;;
*bsd) _cpus="sudo sysctl -n hw.ncpu" ;;
*) _cpus="echo 3" ;;
esac
HB_USER_CFLAGS=""
HB_USER_LDFLAGS=""
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/vm2-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ jobs:
case ${{matrix.os.name }} in
*bsd) _cpus="sysctl -n hw.ncpu" ;;
omnios|solaris) _cpus="psrinfo -p" _add_path="/usr/sfw/bin" ;;
*) _cpus="echo 3" ;;
esac
HB_USER_CFLAGS=""
HB_USER_LDFLAGS=""
Expand Down
7 changes: 7 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@
Entries may not always be in chronological/commit order.
See license at the end of file. */

2025-01-25 10:19 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* .github/workflows/vm1-ci.yml
* .github/workflows/vm2-ci.yml
* updated to always set number of CPUs for -j GNU make switch,
using unlimited number of forks (-j without parameter) causes
'Resource temporarily unavailable' error

2025-01-24 15:02 UTC+0100 Aleksander Czajczynski (hb fki.pl)
* contrib/hbct/dattime3.c
! fixed in block variable declaration for strict ANSI C compat
Expand Down

0 comments on commit 87b5139

Please sign in to comment.