Skip to content

Commit

Permalink
harden
Browse files Browse the repository at this point in the history
  • Loading branch information
nmisch committed May 20, 2024
1 parent 08fb0b5 commit dd82896
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/bsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,12 @@ jobs:
sudo ${{ matrix.os.pkginstall }}
/usr/sbin/pkg_info || true
curl -L https://cpanmin.us | sudo perl - --notest --installdeps --with-configure --with-develop .
gcc -Wall -xc pending_signal_c && for n in `seq 15`; do ./a.out; echo $?; done
seq --version ||true
cc -Wall -xc pending_signal_c ||true
for n in `seq 15`; do ./a.out || echo $?; done
echo BARRIER1
gcc -DREBLOCK -Wall -xc pending_signal_c && for n in `seq 15`; do ./a.out; echo $?; done
cc -DREBLOCK -Wall -xc pending_signal_c ||true
for n in `seq 15`; do ./a.out || echo $?; done
echo BARRIER2
perl Makefile.PL
make
Expand Down

0 comments on commit dd82896

Please sign in to comment.