Skip to content

Commit

Permalink
Try To Fix CI Error
Browse files Browse the repository at this point in the history
  • Loading branch information
pegvin committed Feb 24, 2024
1 parent 9e5c657 commit 07a2a09
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v4

- name: Build
run: make all BUILD_TYPE=Release
run: make all -j4 BUILD_TYPE=Release

- name: Upload Artifacts
uses: actions/upload-artifact@v2
Expand All @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v4

- name: Build
run: make all BUILD_TYPE=Release
run: make all -j4 BUILD_TYPE=Release

- name: Upload Artifacts
uses: actions/upload-artifact@v2
Expand All @@ -48,7 +48,7 @@ jobs:
/usr/sbin/pkg_add gmake
run: |
gmake all BUILD_TYPE=Release CC=gcc
gmake all -j4 BUILD_TYPE=Release CC=gcc
- name: Upload Artifacts
uses: actions/upload-artifact@v2
Expand All @@ -70,7 +70,7 @@ jobs:
pkg install -y gmake
run: |
gmake all BUILD_TYPE=Release CC=clang
gmake all -j4 BUILD_TYPE=Release CC=clang
- name: Upload Artifacts
uses: actions/upload-artifact@v2
Expand All @@ -94,7 +94,7 @@ jobs:
pkg_add gmake
run: |
gmake all BUILD_TYPE=Release CC=clang
gmake all -j4 BUILD_TYPE=Release CC=clang
- name: Upload Artifacts
uses: actions/upload-artifact@v2
Expand Down
1 change: 1 addition & 0 deletions src/xwrap.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

#define _XOPEN_SOURCE 600 // For Structs Like "sigaction"
#define _BSD_SOURCE 1
#define __BSD_VISIBLE 1

#define _POSIX_C_SOURCE 200809L
// Maybe Needed on Mac for `SIGWINCH`
Expand Down

0 comments on commit 07a2a09

Please sign in to comment.