Add Linux CI build job
This commit is contained in:
parent
c76f72df9e
commit
099d176e60
1 changed files with 20 additions and 0 deletions
20
.github/workflows/linux-build.yml
vendored
Normal file
20
.github/workflows/linux-build.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
name: "Linux build"
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
win-build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up dependencies
|
||||
run: |
|
||||
sudo apt-get -qq update
|
||||
sudo apt-get install -yq libsdl2-dev mono-devel
|
||||
- name: Build
|
||||
run: |
|
||||
make
|
||||
# - name: Upload binary
|
||||
# uses: actions/upload-artifact@v1
|
||||
# with:
|
||||
# name: Mesen-S-win
|
||||
# path: bin/Any CPU/Release/Mesen-S.exe
|
Loading…
Add table
Reference in a new issue