Skip to content

Commit 49c2872

Browse files
committed
Need more workflows...
1 parent 55c0148 commit 49c2872

13 files changed

+255
-12
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Compiling QEMU IRIX All on macOS 13
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: macos-13
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Install required packages
18+
run: brew update && brew upgrade && brew install glib pixman
19+
20+
- name: Configure
21+
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
22+
23+
- name: Build
24+
run: make -j4
25+
26+
- name: Install and check
27+
run: sudo make install -j4
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Compiling QEMU IRIX All on macOS 14
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: macos-14
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Install required packages
18+
run: brew update && brew upgrade && brew install glib pixman
19+
20+
- name: Configure
21+
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
22+
23+
- name: Build
24+
run: make -j3
25+
26+
- name: Install and check
27+
run: sudo make install -j3
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Compiling QEMU IRIX All on macOS latest
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: macos-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Install required packages
18+
run: brew update && brew upgrade && brew install glib pixman
19+
20+
- name: Configure
21+
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
22+
23+
- name: Build
24+
run: make -j3
25+
26+
- name: Install and check
27+
run: sudo make install -j3
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Compiling on Ubuntu 20.04
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-20.04
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Install required packages
18+
run: sudo apt-get update && sudo apt-get upgrade -y && sudo apt-get install libglib2.0-dev libpixman-1-dev
19+
20+
- name: Configure
21+
run: ./configure --target-list=irix-linux-user,irixn32-linux-user,irix64-linux-user,solaris-linux-user --disable-werror
22+
23+
- name: Build
24+
run: make -j4
25+
26+
- name: Install and check
27+
run: sudo make install -j4
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Compiling on Ubuntu 22.04
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-22.04
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Install required packages
18+
run: sudo apt-get update && sudo apt-get upgrade -y && sudo apt-get install libglib2.0-dev libpixman-1-dev
19+
20+
- name: Configure
21+
run: ./configure --target-list=irix-linux-user,irixn32-linux-user,irix64-linux-user,solaris-linux-user --disable-werror
22+
23+
- name: Build
24+
run: make -j4
25+
26+
- name: Install and check
27+
run: sudo make install -j4
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Compiling on Ubuntu 24.04
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-24.04
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Install required packages
18+
run: sudo apt-get update && sudo apt-get upgrade -y && sudo apt-get install libglib2.0-dev libpixman-1-dev
19+
20+
- name: Configure
21+
run: ./configure --target-list=irix-linux-user,irixn32-linux-user,irix64-linux-user,solaris-linux-user --disable-werror
22+
23+
- name: Build
24+
run: make -j4
25+
26+
- name: Install and check
27+
run: sudo make install -j4
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Compiling QEMU IRIX on macOS 13
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: macos-13
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Install required packages
18+
run: brew update && brew upgrade && brew install glib pixman
19+
20+
- name: Configure
21+
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
22+
23+
- name: Build
24+
run: make -j4
25+
26+
- name: Install and check
27+
run: sudo make install -j4
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Compiling QEMU IRIX on macOS 14
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: macos-14
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Install required packages
18+
run: brew update && brew upgrade && brew install glib pixman
19+
20+
- name: Configure
21+
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
22+
23+
- name: Build
24+
run: make -j3
25+
26+
- name: Install and check
27+
run: sudo make install -j3
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Compiling QEMU IRIX on macOS latest
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: macos-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Install required packages
18+
run: brew update && brew upgrade && brew install glib pixman
19+
20+
- name: Configure
21+
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
22+
23+
- name: Build
24+
run: make -j3
25+
26+
- name: Install and check
27+
run: sudo make install -j3

.github/workflows/build-irix-ubuntu.yml renamed to .github/workflows/build-irix-ubuntu-latest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Compiling QEMU IRIX on Ubuntu
1+
name: Compiling QEMU IRIX on Linux
22

33
on:
44
push:
@@ -21,7 +21,7 @@ jobs:
2121
run: ./configure --target-list=irix-linux-user --disable-werror
2222

2323
- name: Build
24-
run: make -j$(nproc)
24+
run: make -j4
2525

2626
- name: Install and check
27-
run: sudo make install -j$(nproc)
27+
run: sudo make install -j4

0 commit comments

Comments
 (0)