Skip to content

Commit fdb78bd

Browse files
committed
Fix macOS workflows
1 parent 49c2872 commit fdb78bd

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/build-all-macos-13.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: ./configure --target-list=irix-darwin-user,irixn32-darwin-user,irix64-darwin-user,solaris-darwin-user --disable-werror --disable-vnc --disable-sdl --disable-gtk --disable-cocoa --disable-opengl --disable-capstone --disable-hax --disable-hvf --disable-tools
2222

2323
- name: Build
24-
run: make -j4
24+
run: gmake -j4
2525

2626
- name: Install and check
27-
run: sudo make install -j4
27+
run: gmake install -j4

.github/workflows/build-all-macos-14.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: ./configure --target-list=irix-darwin-user,irixn32-darwin-user,irix64-darwin-user,solaris-darwin-user --disable-werror --disable-vnc --disable-sdl --disable-gtk --disable-cocoa --disable-opengl --disable-capstone --disable-hax --disable-hvf --disable-tools
2222

2323
- name: Build
24-
run: make -j3
24+
run: gmake -j3
2525

2626
- name: Install and check
27-
run: sudo make install -j3
27+
run: gmake install -j3

.github/workflows/build-all-macos-latest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: ./configure --target-list=irix-darwin-user,irixn32-darwin-user,irix64-darwin-user,solaris-darwin-user --disable-werror --disable-vnc --disable-sdl --disable-gtk --disable-cocoa --disable-opengl --disable-capstone --disable-hax --disable-hvf --disable-tools
2222

2323
- name: Build
24-
run: make -j3
24+
run: gmake -j3
2525

2626
- name: Install and check
27-
run: sudo make install -j3
27+
run: gmake install -j3

.github/workflows/build-irix-macos-13.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: ./configure --target-list=irix-darwin-user --disable-werror --disable-vnc --disable-sdl --disable-gtk --disable-cocoa --disable-opengl --disable-capstone --disable-hax --disable-hvf --disable-tools
2222

2323
- name: Build
24-
run: make -j4
24+
run: gmake -j4
2525

2626
- name: Install and check
27-
run: sudo make install -j4
27+
run: gmake install -j4

.github/workflows/build-irix-macos-14.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: ./configure --target-list=irix-darwin-user --disable-werror --disable-vnc --disable-sdl --disable-gtk --disable-cocoa --disable-opengl --disable-capstone --disable-hax --disable-hvf --disable-tools
2222

2323
- name: Build
24-
run: make -j3
24+
run: gmake -j3
2525

2626
- name: Install and check
27-
run: sudo make install -j3
27+
run: gmake install -j3

.github/workflows/build-irix-macos-latest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: ./configure --target-list=irix-darwin-user --disable-werror --disable-vnc --disable-sdl --disable-gtk --disable-cocoa --disable-opengl --disable-capstone --disable-hax --disable-hvf --disable-tools
2222

2323
- name: Build
24-
run: make -j3
24+
run: gmake -j3
2525

2626
- name: Install and check
27-
run: sudo make install -j3
27+
run: gmake install -j3

0 commit comments

Comments
 (0)