From 099d176e60fa37c9cc0a8f752f3da0593d035a4f Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Tue, 2 Mar 2021 16:20:01 +0100 Subject: [PATCH] Add Linux CI build job --- .github/workflows/linux-build.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/linux-build.yml diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml new file mode 100644 index 0000000..4dfd347 --- /dev/null +++ b/.github/workflows/linux-build.yml @@ -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