mirror of
https://github.com/TASEmulators/desmume
synced 2025-10-06 00:32:43 +02:00
Try GitHub Actions for Linux CI
This commit is contained in:
25
.github/workflows/build.yml
vendored
Normal file
25
.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
name: DeSmuME
|
||||
|
||||
on:
|
||||
- push
|
||||
- pull_request
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build DeSmuME
|
||||
runs-on: ubuntu-20.04
|
||||
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: install dependencies
|
||||
run: sudo apt install meson libsdl1.2-dev libpcap-dev libgtk-3-dev
|
||||
|
||||
- name: meson
|
||||
run: |
|
||||
cd desmume/src/frontend/posix/
|
||||
meson build
|
||||
|
||||
- name: ninja
|
||||
run: ninja -C desmume/src/frontend/posix/build
|
Reference in New Issue
Block a user