Skip to content
This repository has been archived by the owner on Sep 11, 2023. It is now read-only.

Build against an older version of Ubuntu to attempt to increase native code backwards compatibility #65

Merged
merged 1 commit into from
Nov 25, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions .github/workflows/linux-build.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
name: "Linux build"
on: push
on:
push:
workflow_dispatch:

jobs:
linux-build:
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Set up dependencies
run: |
sudo apt-get -qq update
sudo apt-get install -yq libsdl2-dev mono-devel
sudo apt-get install -yq --no-install-recommends gnupg ca-certificates
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb https://download.mono-project.com/repo/ubuntu stable-bionic main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
sudo apt-get update
sudo apt-get install -yq --no-install-recommends mono-devel libsdl2-dev libsdl2-2.0 gnome-themes-standard xvfb x11-apps
sudo apt-get clean && sudo rm -rf /var/cache/apt/lists/*
- name: Build
run: |
make
- name: Upload binary
uses: actions/upload-artifact@v1
with:
name: Mesen-Linux
path: bin/x64/Release/Mesen.exe
path: bin/x64/Release/Mesen.exe