Skip to content

Commit 59c6daf

Browse files
linkmauveSalz
authored andcommitted
Try GitHub Actions for Linux CI
1 parent 3d274ed commit 59c6daf

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: DeSmuME
2+
3+
on:
4+
- push
5+
- pull_request
6+
7+
jobs:
8+
build:
9+
name: Build DeSmuME
10+
runs-on: ubuntu-20.04
11+
12+
steps:
13+
- name: checkout
14+
uses: actions/checkout@v2
15+
16+
- name: install dependencies
17+
run: sudo apt install meson libsdl1.2-dev libpcap-dev libgtk-3-dev
18+
19+
- name: meson
20+
run: |
21+
cd desmume/src/frontend/posix/
22+
meson build
23+
24+
- name: ninja
25+
run: ninja -C desmume/src/frontend/posix/build

0 commit comments

Comments
 (0)