File tree Expand file tree Collapse file tree 5 files changed +108
-84
lines changed Expand file tree Collapse file tree 5 files changed +108
-84
lines changed Original file line number Diff line number Diff line change
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)
Original file line number Diff line number Diff line change
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)
Original file line number Diff line number Diff line change
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)
Original file line number Diff line number Diff line change
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)
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments