Skip to content

Commit 029cb55

Browse files
committed
Update build-ubuntu.yml
1 parent 8974992 commit 029cb55

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/build-ubuntu.yml

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

33
on:
44
push:
@@ -7,15 +7,21 @@ on:
77
branches: [ "master" ]
88

99
jobs:
10-
build:
10+
compiling:
1111

1212
runs-on: ubuntu-latest
1313

1414
steps:
1515
- uses: actions/checkout@v4
16+
17+
- name: Install required packages
18+
run: apt-get update && apt-get upgrade -y && apt-get install build-essential
1619

17-
- name: configure
20+
- name: Configure
1821
run: ./configure --target-list=irix-linux-user
1922

2023
- name: Install dependencies
2124
run: make
25+
26+
- name: Install qemu irix
27+
run: make install

0 commit comments

Comments
 (0)