I guess sudo is necessary for builds outside of Docker
This commit is contained in:
parent
63cb3f8daf
commit
f0630418c8
1 changed files with 6 additions and 6 deletions
12
.github/workflows/linux-build.yml
vendored
12
.github/workflows/linux-build.yml
vendored
|
@ -10,12 +10,12 @@ jobs:
|
|||
- uses: actions/checkout@v2
|
||||
- name: Set up dependencies
|
||||
run: |
|
||||
apt-get install -yq --no-install-recommends gnupg ca-certificates
|
||||
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
|
||||
echo "deb https://download.mono-project.com/repo/ubuntu stable-bionic main" | tee /etc/apt/sources.list.d/mono-official-stable.list
|
||||
apt-get update
|
||||
apt-get install -yq --no-install-recommends mono-devel libsdl2-dev libsdl2-2.0 gnome-themes-standard xvfb x11-apps
|
||||
apt-get clean && rm -rf /var/cache/apt/lists/*
|
||||
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
|
||||
|
|
Loading…
Add table
Reference in a new issue