Skip to content

Commit 55c0148

Browse files
committed
Make actions better
1 parent 9f3ef08 commit 55c0148

File tree

5 files changed

+108
-84
lines changed

5 files changed

+108
-84
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 on Ubuntu
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
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 --disable-werror
22+
23+
- name: Build
24+
run: make -j$(nproc)
25+
26+
- name: Install and check
27+
run: sudo make install -j$(nproc)
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Compiling QEMU IRIX64 on Ubuntu
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
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=irix64-linux-user --disable-werror
22+
23+
- name: Build
24+
run: make -j$(nproc)
25+
26+
- name: Install and check
27+
run: sudo make install -j$(nproc)
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Compiling QEMU IRIXN32 on Ubuntu
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
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=irixn32-linux-user --disable-werror
22+
23+
- name: Build
24+
run: make -j$(nproc)
25+
26+
- name: Install and check
27+
run: sudo make install -j$(nproc)
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Compiling QEMU Solaris on Ubuntu
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
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=solaris-linux-user --disable-werror
22+
23+
- name: Build
24+
run: make -j$(nproc)
25+
26+
- name: Install and check
27+
run: sudo make install -j$(nproc)

.github/workflows/build-ubuntu.yml

Lines changed: 0 additions & 84 deletions
This file was deleted.

0 commit comments

Comments
 (0)